首页 > 作文

[PHP] PHPMailer发信失败,用这种方式找原因

更新时间:2023-04-08 09:06:07 阅读: 评论:0

当有个功能要发送通知邮件时 , 大家都会去用phpmailer来调用第三方的smtp发信 , 经常遇到莫名其妙的错误 ,不知道是什么原因 .

今天我也遇到了这种问题 , 在发信时一直都是fal , 找了半天

这个类库最终还是拼接的smtp协议 , 与我们自己手动telnet然后 auth login ,mail from 等是一样的 , 但是我们不知道他最终拼成的smtp协议究竟是什么样的 , 所以不知道原因

需要使用strace命令来查看类库究竟发送和接收到了什么 ?

可以这样使用strace -e ndto,recvfrom -s 1024000 php testmail.p菜单英语怎么读hp

-e是过滤参数的意思 , 只打印 ndto和recvfrom的信息 , -s是数据的长度 ,写长一点 ,得到以下结果

ndto(3, “ehlo localhost.localdomain期末试卷\r\n”, 28, msg_dontwait, null, 0) = 28
recvfrom(3, “220 smtp-30-235.smtpsmail.email.yf.sinanode.com esmtp\r\n”, 8192, msg_dontwait, nu张越访谈ll, null) = 55
ndto(3, “helo localhost.localdomain\r\n”, 28, msg_dontwait, null, 0) = 28
recvfrom(3, “250-smtp-30-235.smtpsmail.email.yf.sinanode.com\r\n250-auth login plain\r\n250-auth=login plain\r\n250-starttls\r\n250 8bitmime\r\n”, 8192, msg_dontwait, null, null) = 121
ndto(3, “auth login\r\n”, 12, msg_dontwait, null, 0) = 12
recvfrom(3, “250 smtp-30-235.smtpsmail.email.yf.sinanode.com\r\n”, 8192, msg_dontwait, null, null) = 49宋小宝经典台词
ndto(3, “bm90awnlaqhanpbmeubmv0\r\n”, 22, msg_dontwait, null, 0) = 22
recvfrom(3, “334 vxnlcm5hbwu6\r\n”, 8192, msg_dontwait, null, null) = 18
ndto(3, “dg9uz3paoav8ymdma5ndrfmq==\r\n”, 26, msg_dontwait, null, 0) = 26
recvfrom(3, “334 ugfzc3dvcamq6\r\n”, 8192, msg_dontwait, null, null) = 18
ndto(3, “mail from:<notice@sina.net>\r\n”, 29, msg_dontwait, null, 0) = 29
recvfrom(3, “235 ok authenticloudly是什么意思ated\r\n”, 8192, msg_dontwait, null, null) = 22
the following from address failed: xxxx@sina.net

看到这么一段信息 , 里面清楚的标出了ndto发出去的数据 和recvfrom收回来的数据 , 经过对比class.smtp.php 代码

最终发现是在新浪企邮的smtp返回信息 与其他免费邮箱的smtp信息 多几行 , 而类库还是按照他自己的逻辑只读取了一行记录 , 因此很多地方就对不上了 , 错位了

把smtp代码里 读取返回数据的地方对应好 , 他切分前三个数字作为返回码进行判断 ,有些也判断的不对 , 多对应一下改一改源码

本文发布于:2023-04-08 09:06:05,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/646e07329be593b010c9d8014c0518de.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:[PHP] PHPMailer发信失败,用这种方式找原因.doc

本文 PDF 下载地址:[PHP] PHPMailer发信失败,用这种方式找原因.pdf

标签:数据   信息   类库   自己的
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图