Ubuntu使用mutt+msmtp发邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu使用mutt+msmtp发邮件相关的知识,希望对你有一定的参考价值。
Ubuntu使用mutt+msmtp发邮件
apt-get install mutt
apt-get install msmtp
cp -rv /etc/Muttrc ~/.muttrc
vi ~/.muttrc(最后添加)
set sendmail="/usr/bin/msmtp"
set use_from=yes
set realname="yangming0"
set [email protected]
set envelope_from=yes
:wq
vi ~/.msmtprc
account default
host smtp.126.com
user yangming0
from [email protected]
password xxxxxxx (此处为126邮箱的授权码)
auth login
tls off
logfile ~/.msmtp.log
:wq
echo "hello" | mutt -s "title" [email protected]
附:
126邮箱授权码:
登录126邮箱,设置——POP3/SMTP/IMAP——勾选POP3/SMTP服务——短信验证码——设置授权码
以上是关于Ubuntu使用mutt+msmtp发邮件的主要内容,如果未能解决你的问题,请参考以下文章