PEAR:Mail 如何在已发送邮件中保存电子邮件副本?

发布于 2024-11-16 22:50:58 字数 151 浏览 0 评论 0原文

当我们使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坠似风落 2024-11-23 22:50:58

您的 iPhone(以及所有其他邮件客户端)按以下方式执行此操作:

  1. 通过 smtp 发送邮件
  2. 通过 IMAP 将邮件存储在“已发送”IMAP 文件夹中

基本上将邮件发送到服务器两次,一次使用 SMTP 将其取出发送给世界,下次再将其存储在您的邮箱中。

Your iphone (and every other mail client) does it the following way:

  1. send the mail via smtp
  2. store the mail via IMAP in the "Sent" IMAP folder

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.

昇り龍 2024-11-23 22:50:58

发送邮件不会自动在“已发送”文件夹中创建邮件的副本。使用 imap_append()。 imap_append()

sending a mail will not automatically create a copy of it in the 'sent' folder. Use imap_ append(). imap_append()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文