Allowing replies to e-mail notifications to go to each commiter on the change
Hi,
I'm trying to configure the e-mail notification system so that when someone sends a reply to a notification it is sent to all the committers of the relevant build. Is there built-in functionality to do sucha thing through TeamCity? Or would I need a plugin to do such. I've looked at the freemarker templates, but there doesn't seem to be a way to access commiting users e-mail directly from it without writing a plugin for such.
Thanks,
Jason.
Please sign in to leave a comment.
Hi Jason,
Unfortunately no, there is no out-of-the-box functionality related to sending messages to your mail server. The only thing that I can mention here, you can customize email headers, like "reply-to", may be this will give you a clue.
As for the second question: do you need all committers by all VCS modifications in a build? You can access modification committers using getCommitterIds() method: http://javadoc.jetbrains.net/teamcity/openapi/current/jetbrains/buildServer/vcs/SVcsModification.html
All modifications are available in a template.
---
Maxim