在SwiftMailer生成的电子邮件中更改Multipart Boundary?

时间:2012-11-26 00:31:54

标签: php email swiftmailer

感谢阅读!

我想更改SwiftMailer生成的消息中的默认多部分边界字符串

SwiftMailer似乎自动生成字符串,并包含字符串“swift_v4 ...”,如下所示:

--_=_swift_v4_135388916050b2b5889e516_=_

        ...Text Message Part...

--_=_swift_v4_135388916050b2b5889e516_=_

        ...HTML Message Part...

--_=_swift_v4_135388916050b2b5889e516_=_

我在文档中没有看到任何内容,但在我深入研究代码之前,是否有人知道通过SwiftMailer接口更改此方法?

2 个答案:

答案 0 :(得分:2)

source code判断,这可以通过Swift_Message::setBoundary()完成。

答案 1 :(得分:0)

  $message = Swift_Message::newInstance()           # Create the message
->setBoundary('Your boundary')
# more code