linux--发邮件

2020-06-19  本文已影响0人  w_dll

外网的情况下,如果有配邮件,可以很方便的发送通知服务器的报警信息,以便于及时发现问题响应。

配置/etc/mail.rc

在文件末尾添加

set from=888888888@qq.com
set smtp="smtps://smtp.qq.com:465"
set smtp-auth-user=888888888
# smtp-auth-password非密码,是授权码
set smtp-auth-password=helloworld
set smtp-auth=login
set ssl-verify=ignore
set nss-config-dir=/etc/pki/nssdb

测试邮件

邮件标题 test
邮件正文 "this is a mail test!"

echo "this is a mail test!" | mail -s "test" gqoyvf@163.com

2020-06-22 更新

需要用单引号 代替 双引号,不然会 报错;或者后面有一个空格,也不会报错
参考链接
https://www.cnblogs.com/chuanzhang053/p/9253410.html

echo 'this is a mail test!' | mail -s "test" gqoyvf@163.com
echo "this is a mail test! " | mail -s "test" gqoyvf@163.com
上一篇下一篇

猜你喜欢

热点阅读