PEAR:Mail 如何在已发送邮件中保存电子邮件副本?
当我们使用 PEAR:Mail 并通过 SMTP 服务器发送电子邮件时,是否可以保存我们的电子邮件?
前任。当使用 iPhone 发送电子邮件时,我们可以在 Web 邮件访问的“已发送”文件夹中看到该电子邮件的副本
我正在寻找基于 PHP 代码的解决方案。
Is that possible to save our emails when we use PEAR:Mail and send them trough SMTP server?
ex. when an email is sent with IPhone, we can see a copy of that email in Sent folder on our web mail access
I'm looking for a solution base on PHP code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 iPhone(以及所有其他邮件客户端)按以下方式执行此操作:
基本上将邮件发送到服务器两次,一次使用 SMTP 将其取出发送给世界,下次再将其存储在您的邮箱中。
Your iphone (and every other mail client) does it the following way:
It's basically sending the mail 2 times to the server, once with SMTP to get it out to the world, and another time to store it in your mailbox.
发送邮件不会自动在“已发送”文件夹中创建邮件的副本。使用 imap_append()。 imap_append()
sending a mail will not automatically create a copy of it in the 'sent' folder. Use imap_ append(). imap_append()