I am in the process of migrating my projects to Teamcity from another CI server. Sending out email notification with the TestNG reports as email body was really easy in the earlier one as I just has to use a plugin and provide a path to the report file in email body.
I have already generated the artifacts and can see the reports on Teamcity server per build but also need to send these out to people who dont have access to Teamcity server, therefore these need to be a part of email notifications.
Is it possible to achieve this on per build configuration in Teamcity?
Build artifacts:
<#list build.artifactsDirectory.listFiles() as file> ${file.name} (${file.length()}B)#list>` Will list all artifcats with their name in the email. Problem is, internally these are all Hyperlink. Better than before but still unable to share this with people who don't have access to TC server. – ygsh Sep 15 '16 at 06:00