mailx邮件客户端发送邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mailx邮件客户端发送邮件相关的知识,希望对你有一定的参考价值。

一、安装mailx邮件客户端:
yum install mailx -y

二、修改/etc/mail.rc配置文件:

set ssl-verify=ignore
set nss-config-dir=/root/.certs
set [email protected]
set smtp=smtps://smtp.qq.com:465
set [email protected]
set smtp-auth-password=qq邮箱授权码
set smpt-auth=login

三、配置证书:
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

四、在自己的qq邮箱获取授权码:
技术图片

把生成的授权码复制粘贴到第二步set smtp-auth-password=即可。

五、最后发送邮件:
echo "i am victor chen,hi" | mail -v -s "say hello" [email protected]

以上是关于mailx邮件客户端发送邮件的主要内容,如果未能解决你的问题,请参考以下文章

centos 7 mailx邮件发送

Linux配置mail客户端发送邮件

关于mailx邮件发不出去的解决办法

Linux使用mailx发送邮件--技术流ken

centos上mailx通过465端口发送邮件

centos7 利用mailx发送邮件