Linux中使用sendmail发送邮件,指定任意邮件发送人
一、使用任意发件人发送邮件
echo 'Test ' | mail -r fromMail@163.com -s "Test test" toMail@163.com
其中s表示主题。
宋兴柱:转载内容,请标明出处,谢谢!源文来自 宝贝云知识分享:https://www.dearcloud.cn
一、使用任意发件人发送邮件
echo 'Test ' | mail -r fromMail@163.com -s "Test test" toMail@163.com
其中s表示主题。