美文网首页
使用sendEmail发邮件

使用sendEmail发邮件

作者: 夜空最亮的9星 | 来源:发表于2018-09-28 17:26 被阅读12次

Linux 使用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 这个文件

相关文章

网友评论

      本文标题:使用sendEmail发邮件

      本文链接:https://www.haomeiwen.com/subject/tnipoftx.html