ubuntu和centos下使用外部smtp发邮件

centos上:

第一步:在qq邮箱设置-->账户中开启pop3/smtp服务,并设置独立密码

第二步:yum install -y mailx

第三步:vim /etc/mail.rc 在文件最后添加你的邮箱信息:

set from=[email protected]
set smtp=smtp.qq.com
set smtp-auth-user=82312924
set smtp-auth-password=Your password
set smtp-auth-login

第四步:就能直接使用echo "正文" |mail -s "主题"  [email protected]


ubuntu上:

ubunut上mailx这个命令对应的deb包有bsd-mailx和heirloom-mailx

bsd-mailx对应的配置文件是/etc/mail.rc跟centos一样,but配置了认证信息之后还是不能发邮件,具体原因我也没找到。。。

heirloom-mailx对应的配置文件是/etc/nail.rc

配置过程如下:

第一步:在qq邮箱设置-->账户中开启pop3/smtp服务,并设置独立密码

第二步:apt-get install heirloom-mailx

第三步:vim /etc/nail.rc 在文件最后添加你的邮箱信息:

set from=[email protected]
set smtp=smtp.qq.com
set smtp-auth-user=82312924
set smtp-auth-password=Your password
set smtp-auth-login

第四步:就能直接使用echo "正文" |mail -s "主题"  [email protected]


本文出自 “接着丶来” 博客,请务必保留此出处http://comingon.blog.51cto.com/4870913/1608506

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。