如何使用 Zend Mail 在 smtp 之前执行 pop?
我刚刚开始使用 Zend Mail Compoment,并且在 smtp 之前需要 pop,但在 zend mail 文档中没有提及这一点。
有人能就此提出建议吗?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我刚刚开始使用 Zend Mail Compoment,并且在 smtp 之前需要 pop,但在 zend mail 文档中没有提及这一点。
有人能就此提出建议吗?
谢谢
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
POP before SMTP 不是 SMTP 标准的一部分,它只是一种用于检查连接到 SMTP 服务器的客户端是否具有有效凭据的 hack,而不使用 SMTP 自己的身份验证机制。
只需使用 Zend 框架打开自己POP邮箱,然后通过SMTP发送邮件。
POP before SMTP is not part of the SMTP standard, it's just a hack used to check that the client connecting to the SMTP server has valid credentials, without using SMTP's own authentication mechanisms.
Just use the Zend framework to open the POP mailbox yourself, and then send the mail via SMTP.