re: ant要熟嘍~~吃定它 點滴鑄就輝煌 2005-11-24 20:55
ant 全攻略之 --- 發送郵件
4.6 發送郵件
n 使用SMTP服務器發送郵件
n 例子:
<mail mailhost="smtp.myisp.com" mailport="1025" subject="Test build">
<from address="me@myisp.com"/>
<to address="all@xyz.com"/>
<message>The ${buildname} nightly build has completed</message>
<fileset dir="dist">
<includes name="**/*.zip"/>
</fileset>
</mail>
l mailhost: SMTP服務器地址
l mailport: 服務器端口
l subject: 主題
l from: 發送人地址
l to: 接受人地址
l message: 發送的消息
l fileset: 設置附件