linux下使用sendEmail工具发送邮件

时间:2021-02-02 08:48:47

原文:http://blog.51cto.com/mofansheng/1921471

 

endEmail是一个轻量级,命令行的SMTP邮件客户端。如果你需要使用命令行发送邮件,那么sendEmail是非常完美的选择:使用简单并且功能强大.这个被设计用在php、bash、perl和web站点使用。

 

下载及安装

# wget http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz

# tar -xvf sendEmail-v1.56.tar.gz

sendEmail-v1.56/

sendEmail-v1.56/CHANGELOG

sendEmail-v1.56/README

sendEmail-v1.56/README-BR.txt

sendEmail-v1.56/TODO

sendEmail-v1.56/sendEmail

sendEmail-v1.56/sendEmail.pl

 

拷贝命令到系统环境变量路径下

# cd sendEmail-v1.56/

# cp sendEmail /usr/local/sbin/

 

/usr/local/sbin/sendEmail 命令主程序  

发邮件命令如下:

# sendEmail -f name@163.com -t 123456@qq.com -s smtp.163.com -u "2017-05-03 record"  -xu name -xp passwd -m "2017-05-03 record"  -a  "/data/test.txt"

 

-f xxxxx@163.com  发件人邮箱

-t 123456@qq.com     收件人邮箱

-s smtp.163.com       发件人邮箱的smtp服务器

-u "邮件主题"     邮件的标题

-o message-content-type=html   邮件内容的格式,html表示它是html格式

-o message-charset=utf8        邮件内容编码为utf8

-xu name@163.com       发件人邮箱的用户名

-xp passwd           发件人邮箱授权密码

-m "邮件内容"         邮件的具体内容

-a /data/test.txt      发送test.txt 这个文件