美文网首页
linux--发邮件

linux--发邮件

作者: w_dll | 来源:发表于2020-06-19 09:48 被阅读0次

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

    配置/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
    

    相关文章

      网友评论

          本文标题:linux--发邮件

          本文链接:https://www.haomeiwen.com/subject/kjtvxktx.html