linux下shell发送邮件方法
Posted anthony-ling
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下shell发送邮件方法相关的知识,希望对你有一定的参考价值。
首先需要安装mutt和msmtp
编辑mutt配置文件
系统全局设置/etc/Muttrc,如果使用某个系统用户,可以在~/.muttrc中设置。
vim .muttrc
set sendmail="/usr/bin/msmtp"
set use_from=yes
set realname="123"
set [email protected] #第三方邮箱发送地址
set envelope_from=yes
创建~/.msmtprc和~/.msmtp.log,分别为配置和日志文件。
vim .msmtprc
account default
host smtp.126.com #QQ邮箱应该填写:smtp.qq.com
from [email protected] #第三方邮箱发送地址
auth plain
user 123 #第三方邮箱发送地址
password 123456 #第三方邮箱smtp服务密码
logfile ~/.msmtp.log #可以将相关的邮件发送日志保存在这个文件中。
由于password是明码,所以我们需要修改此文件的权限。
chmod 600 .msmtprc
.msmtp.log 可能会需要更多的权限
chmod 660 .msmtp.log
touch ~/.msmtp.log #touch是创建该文件夹,
邮件发送方式 -s 主题
echo "test" |mutt -s "my_first_test" [email protected]
以上是关于linux下shell发送邮件方法的主要内容,如果未能解决你的问题,请参考以下文章
Linux学习-->如何通过Shell脚本实现发送邮件通知功能?