首页 > 代码库 > linux发送邮件的功能总结
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是文件名称
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。