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:  设置附件