我正在使用来自swiftmailer.org
的SwiftMailer for PHP一切运作良好,但我想知道是否有办法将发送的邮件从SwiftMailer发送的邮件帐户添加到已发送的文件夹中?
就是这样,祝你有个美好的一天。
答案 0 :(得分:7)
根据开发人员的说法,swiftmailer无法复制到Sent文件夹,因为它是邮件发件人,而不是邮箱管理员。
正如github page所述:
Swiftmailer是一个发送电子邮件的库,而不是管理邮箱。所以,这确实超出了Swiftmailer的范围。
然而,来自php.net的某人发布了a solution that might work for you:
使用SwiftMailer通过PHP发送消息。
$message = Swift_Message::newInstance("Subject goes here");
// (then add from, to, body, attachments etc)
$result = $mailer->send($message);
在上面的步骤1)中构建消息时,将其保存到变量中,如下所示:
$msg = $message->toString();
// (this creates the full MIME message required for imap_append()!!
// After this you can call imap_append like this:
imap_append($imap_conn,$mail_box,$msg."\r\n","\\Seen");
答案 1 :(得分:4)
我遇到了类似的问题,Sutandiono的回答让我朝着正确的方向前进。但是由于完整性以及我在连接到Exchange 2007服务器时遇到其他问题,我想提供一个完整的代码片段,用于将消息存储到IMAP上的Sent文件夹:
$msg = $message->toString();
// $message is instance of Swift_Message from SwiftMailer
$stream = imap_open("{mail.XXXXX.org/imap/ssl/novalidate-cert}", "username", "password", null, 1, array('DISABLE_AUTHENTICATOR' => 'GSSAPI'));
// connect to IMAP SSL (port 993) without Kerberos and no certificate validation
imap_append($stream,"{mail.XXXXX.org/imap/ssl/novalidate-cert}Sent Items",$msg."\r\n","\\Seen");
// Saves message to Sent folder and marks it as read
imap_close($stream);
// Close connection to the server when you're done
使用您自己的信息替换服务器主机名,用户名和密码。