如何使用ant向各个用户发送邮件。
我正在使用ant执行一些测试,并且需要通知用户已执行测试的状态。那么,有什么方法可以让我做到这一点吗?
谨致问候:Sachin
使用SMTP邮件任务。
http://ant.apache.org/manual/Tasks/mail.html
示例:
<mail mailhost="smtp.myisp.com" mailport="1025" subject="Test build">
<from address="config@myisp.com"/>
<replyto address="me@myisp.com"/>
<to address="all@xyz.com"/>
<message>The ${buildname} nightly build has completed</message>
<attachments>
<fileset dir="dist">
<include name="**/*.zip"/>
</fileset>
</attachments>
</mail>