1 参考资料
https://bbs.aliyun.com/read/316576.html
http://blog.csdn.net/qq_25551295/article/details/51803942
2 安装mailx
1 | yum install mailx |
2.1 修改配置文件
1 | vim /etc/mail.rc |
追加如下内容
1 | set smtp="smtps://smtp.mxhichina.com:465" |
2.2 发送测试
例子1:
1 | echo message3 | mail -v -r "sales@vfutai.xxx" -s "This is the subject" dongshan3@foxmail.xxx |
message3
正文`dongshan3@foxmail.xxx` 收件人地址,发送多人加逗号添加邮件地址
-r “sales@vfutai.xxx”
发件人地址
-s "This is the subject"
邮件标题
-a /etc/*.txt
附件
列子2:
1 |
|