PHP SwiftMailer从字符串到Message对象

时间:2018-06-27 18:36:22

标签: swiftmailer

我们知道我们可以从Swift Message对象获取电子邮件字符串:

$message = new Swift_Message();
$message->setSubject("hi");
$message->attach(Swift_Attachment::fromPath('a.txt'));
$message->toString();

但是我可以将邮件字符串解析为Message对象吗? 太谢谢了!

2 个答案:

答案 0 :(得分:1)

我认为php-mime-mail-parser可以解决您的问题:

  

一个经过全面测试的PHP 7.1+电子邮件解析器(mailparse扩展包装器)。   就性能,外来字符编码,附件处理和易用性而言,它是最有效的php电子邮件解析器。 Internet邮件格式RFC 822、2822、5322。

https://github.com/php-mime-mail-parser/php-mime-mail-parser

答案 1 :(得分:0)

Swift邮件无法实现