linux自带的mail命令发邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux自带的mail命令发邮件相关的知识,希望对你有一定的参考价值。
1.
vi /etc/mail.rc
文末增加
set from="[email protected]"
set smtp="128.1.30.200"
set smtp-auth-user="ittest" smtp-auth-password=“”
set smtp-auth="login"
2.
vi sendmail.sh
echo "正文" | mail -s "主题" @.com
chmod +x sendmail.sh
以上是关于linux自带的mail命令发邮件的主要内容,如果未能解决你的问题,请参考以下文章
Linux学习-->如何通过Shell脚本实现发送邮件通知功能?