通过 swiftmailer 发送附件文件
Sending an attach document via swiftmailer
我正在尝试将文件附加到电子邮件。
首先,我使用 snappyBundle 为 pdf 创建文件 && 使用 liugioBundle 创建 xsl 文件。
紧接着我需要使用 swiftmailer 将其作为电子邮件附件发送。
有什么建议吗?
您可以只在 Switft_Mailer 对象上使用 ->attach() 方法
http://swiftmailer.org/docs/messages.html
$email = \Swift_Message::newInstance()
->setSubject('Subject')
->setFrom('me@domain.com')
->setTo($recipients)
->setBody(
$this->renderView(
'Emails/niceEmail.html.twig',
compact('foo', 'bar', 'message')
),
'text/html'
)
->attach(Swift_Attachment::fromPath('my-document.pdf'));
我正在尝试将文件附加到电子邮件。
首先,我使用 snappyBundle 为 pdf 创建文件 && 使用 liugioBundle 创建 xsl 文件。
紧接着我需要使用 swiftmailer 将其作为电子邮件附件发送。
有什么建议吗?
您可以只在 Switft_Mailer 对象上使用 ->attach() 方法
http://swiftmailer.org/docs/messages.html
$email = \Swift_Message::newInstance()
->setSubject('Subject')
->setFrom('me@domain.com')
->setTo($recipients)
->setBody(
$this->renderView(
'Emails/niceEmail.html.twig',
compact('foo', 'bar', 'message')
),
'text/html'
)
->attach(Swift_Attachment::fromPath('my-document.pdf'));