美文网首页
发送邮件

发送邮件

作者: 銭兎孑 | 来源:发表于2018-06-29 17:27 被阅读11次

    yum -y install sendmail

    systemctl start sendmail.service

    echo -n | openssl s_client -connect smtp.163.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/.certs/163.crt

    certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ./ -i 163.crt

    set smtp="smtps://smtp.163.com:465"
    set from="xxx@163.com"
    set smtp-auth=login
    set smtp-auth-user="xxx@163.com"
    set smtp-auth-password="xxx" //此处是授权码 不是秘密
    set ssl-verify=ignore
    set nss-config-dir=/root/.certs //证书路径

    echo hello | mail -s "TEST" 1277600680@qq.com

    相关文章

      网友评论

          本文标题:发送邮件

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