ant 发送邮件

ant发送邮件功能,需要在ant的安装目录/lib目录下,添加jar包 mail.jar 和 activation.jar。

编写xml




        
                
                        
                        
                        
                        send test mail

cha kan fangshi

]]>


mailhost:发件服务器地址;mailport:发件端口;subject:邮件主题;cc:抄送


执行后,总是报错:

Buildfile: 。。。。。。/mail.xml
sendMail:
     [mail] Sending email:send mail test
     [mail] Failed to send email: 500 Error: bad syntax
BUILD FAILED

是在Linux上执行的,最后发现是hosts的问题。

执行hostname -i,如果没有出现hostname或者IP,说明/etc/hosts里面没有给127.0.0.1对应地址。

解决方法:编辑/etc/hosts,添加 127.0.0.1 ${hostname} (注:中间有空格,hostname的位置写你的设备的hostname或者IP地址都可以)



你可能感兴趣的:(ant,java)