Mutt邮件发送

  • 安装邮件服务器 postfix 、客户端 mutt
yum -y install postfix mutt
  • 设置 postfix 开机自启
echo "
postfix start
" >> /etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
  • 配置 mutt
echo "
#如果你收到的邮件乱码,设置以下信息
set charset="utf-8"
set rfc2047_parameters=yes
#如果你想自定义发件人信息,需要进行如下设置
set envelope_from=yes
set sendmail="/usr/sbin/sendmail.postfix"
set use_from=yes
set from="[email protected]"
set realname="Flysky"
" >> /etc/Muttrc
  • 使用
echo "内容" | mutt [email protected] -s "标题" -a 附件

你可能感兴趣的:(Mutt邮件发送)