使用mailx发送gmail邮件

CSDN博客地址:https://blog.csdn.net/superDE009/article/details/101447665

使用mailx发送gmail邮件

安装mailx

yum install -y mailx

配置发送邮件

vim /etc/mail.mc加入
set [email protected]       #发送使用的邮箱用户
set smtp=smtps://smtp.gmail.com:465       #gmail的smtp邮件服务器
set smtp-auth=login                       #验证方式,默认就是login
set [email protected]:#邮箱验证用户
set smtp-auth-password=xxxxxxxxxxxxxxxxx:#设备专用密码
set ssl-verify=ignore
set nss-config-dir=/etc/pki/nssdb/

确保gmail开启了两步验证
申请应用专用密码
发送测试邮件

echo "Your message" | mail -v -s "Message Subject" [email protected]

One comment

一只小恐龙

(σ゚∀゚)σ哇 !非常感谢!

发表评论

邮箱地址不会被公开。 必填项已用*标注