linux发送邮件的功能总结
今天添加了发送邮件的功能,总结一下,供以后参考:
1、直接使用管道发送邮件
echo "hello,this is the content of mail.welcome to www.mzone.cc" | mail -s "Hello from mzone.cc by pipe" [email protected]
2、使用文本发送
mail -s "Hello from mzone.cc by file" [email protected] < mail.txt
3、如果希望修改发送邮件的人,那么:
mail -s "Hello from mzone.cc with sender" [email protected] -- -f from@qunar.com<mail.txt
4、如果想要发送附件,那么:
uuencode test.txt test | mail -s "hello,see the attachement" [email protected]<mail.txt
其中test.txt是附件内容,test是文件名称
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。