码迷,mamicode.com
首页 > 系统相关 > 详细

linux发送邮件的功能总结

时间:2014-07-09 14:03:32      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   文件   linux   

今天添加了发送邮件的功能,总结一下,供以后参考:

1、直接使用管道发送邮件

echo "hello,this is the content of mail.welcome to www.mzone.cc" | mail -s "Hello from mzone.cc by pipe" admin@qunar.com

2、使用文本发送

mail -s "Hello from mzone.cc by file" admin@qunar.com < mail.txt

3、如果希望修改发送邮件的人,那么:

mail -s "Hello from mzone.cc with sender" liqiu@qunar.com -- -f from@qunar.com<mail.txt

4、如果想要发送附件,那么:

uuencode test.txt test | mail -s "hello,see the attachement" liqiu@qunar.com<mail.txt

其中test.txt是附件内容,test是文件名称

linux发送邮件的功能总结,布布扣,bubuko.com

linux发送邮件的功能总结

标签:style   blog   color   使用   文件   linux   

原文地址:http://www.cnblogs.com/liqiu/p/3832447.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!