How to email xslt reports to list of users given in a xls file?

bacchus

New Member
I am able to generate XSLT reports after successful completion(execution) of build(pass/fail). I want to email this report to email addresses those are mentioned in the excel sheet.There are not too many email addresses but they are fixed, i.e. only a particular set of emails addresses will get this report.I need to write a target , that I will call via ant command from terminal to send the reports.\[code\]<target name="run"> <antcall target="clean" /> <antcall target="init" /> <antcall target="compile" /> <antcall target="runTests" /> <!-- <antcall target ="makeXsltReports"/> --> <antcall target ="testng-xslt-report"/> <antcall target="openReport" /> <Fetch the excel sheet's cell one >> get the email address >> send the email.</target>\[/code\]
 
Top