如何从PHPMailer获取邮件正文?

发布于 2024-12-01 02:10:15 字数 489 浏览 0 评论 0原文

我使用 PHPMailer 通过 SMTP 发送电子邮件。它可以工作,但不会将已发送的电子邮件保存在

已发送邮件中。我想在已发送邮件中发送已发送的电子邮件,有什么办法吗?

我知道可以使用 imap_append 函数来实现它。但是,该怎么做呢?

PHPMailer 似乎没有返回 $message 的功能。

if ($return = $mail->Send()) {

$stream = imap_open("{{$host}:993/imap/ssl}Sent Items", $user_name, $user_pwd); 

imap_append($stream, "{{$host}:993/imap/ssl}Sent Items" , $message  , "\\Seen");

imap_close($stream);

};

如何从PHPMailer获取邮件正文?

I use PHPMailer to send email via SMTP. It works, but it doesn't save the sent emails in

sent items. I want to make to sent emails in the sent items, any idea?

I know can use imap_append function to achieve it. But, how to do that?

The PHPMailer seems doesn't has the function to return the $message.

if ($return = $mail->Send()) {

$stream = imap_open("{{$host}:993/imap/ssl}Sent Items", $user_name, $user_pwd); 

imap_append($stream, "{{$host}:993/imap/ssl}Sent Items" , $message  , "\\Seen");

imap_close($stream);

};

How to get the message body from PHPMailer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦开始←不甜 2024-12-08 02:10:15

PHPMailer 的实例变量都是公共的。
查看源代码,您可以使用:

$mail->Body

如果您想要包含所有边界的普通主体,您也可以使用:

$mail->CreateBody();

请参阅:
http://phpmailer.svn.sourceforge.net/viewvc/phpmailer/trunk/phpmailer/class.phpmailer.php?revision=452&view=markup

The instance variables from PHPMailer are all public.
Looking at the source you can just use:

$mail->Body

If you want the plain body including the all boundaries you could also use:

$mail->CreateBody();

See:
http://phpmailer.svn.sourceforge.net/viewvc/phpmailer/trunk/phpmailer/class.phpmailer.php?revision=452&view=markup

驱逐舰岛风号 2024-12-08 02:10:15

PHPMailer 似乎没有返回 $message 的功能。

是的,确实如此。至少在 5.2.28 版本中,有一个方法 getSentMIMEMessage() 来获取完整的 MIME 消息(与电子邮件正文不同)。该方法仅在发送电子邮件或调用 preSend() 方法后才有效。

The PHPMailer seems doesn't has the function to return the $message.

Yes, it does. At least in version 5.2.28 there is a method getSentMIMEMessage() to get the full MIME message (different from the email body). That method only works after sending the email, or calling the preSend() method.

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