原文:http://blog.chinaunix.net/uid-16844903-id-308853.html
功能:
发邮件的客户端
官网地址:
http://caspian.dotconf.net/menu/Home/
下载sendEmail-v1.56.tar.gz
wget http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz
解压之后就能用
部分参数如下:
-f 表示from,发件人地址
-t 表示to,收件人地址
-s mail服务器域名
-u 主题
-xu 用户名(@之前的)
-xp 用户密码
-m 纯文本信息
-o message-file=/root/.. 发送文件中的内容
-a 发送附件 (-m,-o,-a可以同时使用)
例如:
[[email protected] sendEmail-v1.56]# ./sendEmail -f [email protected] -t [email protected] -s smtp.163.com -xu username -xp password -u test -m mytesteamil
Jan 30 10:09:16 ora01 sendEmail[8861]: Email was sent successfully!
问题:
1·如果出现如下提示
Jan 30 10:06:15 ora01 sendEmail[8704]: ERROR => Connection attempt to localhost:25 failed: IO::Socket::INET: connect: Connection refused
是没有指定-s参数,邮件服务器域名。