如何使用 PHPMailer 附加 .eml 文件?
How can I Attach a .eml File Using PHPMailer?
我正在尝试将 .eml 文件附加到我在 PHPMailer 中发送的电子邮件中。我现在正在这样做:
$mail->addStringAttachment("/var/www/virtual/xxx.xxx.com/html/test_sample_message.eml", 'test.eml', 'base64', 'message/rfc822');
它确实附加了一个 .eml 文件,但它始终是空的。另外,我尝试这样做:
$mail->addStringAttachment($body, 'test.eml', 'base64', 'message/rfc822');
如果我这样做,结果相同(电子邮件文件已附加,但它是空的)。
我在这里做错了什么?
谢谢
删除函数中的代码:'eml' => 'message/rfc822'
_mime_types($ext = '')
然后使用addAttachment()
这成功了:
$mail->addStringAttachment($body, 'Original Email.eml', 'base64', 'application/octet-stream');
我正在尝试将 .eml 文件附加到我在 PHPMailer 中发送的电子邮件中。我现在正在这样做:
$mail->addStringAttachment("/var/www/virtual/xxx.xxx.com/html/test_sample_message.eml", 'test.eml', 'base64', 'message/rfc822');
它确实附加了一个 .eml 文件,但它始终是空的。另外,我尝试这样做:
$mail->addStringAttachment($body, 'test.eml', 'base64', 'message/rfc822');
如果我这样做,结果相同(电子邮件文件已附加,但它是空的)。
我在这里做错了什么? 谢谢
删除函数中的代码:'eml' => 'message/rfc822'
_mime_types($ext = '')
然后使用addAttachment()
这成功了:
$mail->addStringAttachment($body, 'Original Email.eml', 'base64', 'application/octet-stream');