解决:qq邮箱收不到sendmail发送的邮件

1. 我们用sendmail给qq邮箱发邮件

echo "testmail" | mail -s "hello" [email protected]



介绍一下mail命令

-s 指定邮件标题

然后后面跟着要发送的邮件地址


sendmail常用的三种用法

第一种:

mail -s test [email protected]

#第一种方法,你可以把当前shell当成编辑器来用,编辑完内容后Ctrl-D结束

第二种:

echo “mail content”|mail -s test [email protected]

#第二种方法,我用的最多,可能是喜欢管道的缘故吧

第三种:

mail -s test [email protected]< file

#第三种方法,以file的内容为邮件内容发信


2. 如果接收不到qq邮件,一般都是qq邮箱给拦截了,请按下图操作:

点击自助查询

解决:qq邮箱收不到sendmail发送的邮件_第1张图片

点击收件查询

解决:qq邮箱收不到sendmail发送的邮件_第2张图片

点击添加白名单

解决:qq邮箱收不到sendmail发送的邮件_第3张图片

回到收件箱即可看到

解决:qq邮箱收不到sendmail发送的邮件_第4张图片

你可能感兴趣的:(解决:qq邮箱收不到sendmail发送的邮件)