Linux 使用mailx发送邮件

腾讯企业邮箱 为例
一、安装命令

yum install mailx -y

二、安装证书(开发用户或root用户均可)

mkdir -p /root/.certs/
echo -n | openssl s_client -connect smtp.qq.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/.certs/qq.crt
certutil -A -n "GeoTrust SSL CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt
certutil -A -n "GeoTrust Global CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt
certutil -L -d /root/.certs

三、获取邮箱授权密码
腾讯企业邮箱主页-->设置-->微信绑定-->开启安全登录-->生成客户端专用密码(即授权码)
四、编辑配置文件(需要root用户),追加以下内容

vim /etc/mail.rc

set from=geekli@baidu.com
set smtp="smtps://smtp.exmail.qq.com:465"
set smtp-auth-user=geekli@baidu.com
set smtp-auth-password=Kk7JBJVXLi3wtEag
set smtp-auth=login
set ssl-verify=ignore
set nss-config-dir=/root/.certs

四、发送邮件

echo "killed~" | mail -s 'killed' xxx@qq.com 2>/dev/null

参考:
https://www.wpzhiku.com/shi-yong-mailx-tong-guo-smtp-zai-centos-shang-fa-song-you-jian/

https://www.cnblogs.com/jinzhenshui/p/15156904.html

posted @ 2023-03-16 00:44  郭小睿  阅读(316)  评论(0编辑  收藏  举报