gpt4 book ai didi

php - 如何在 Symfony2 中使用 Swiftmailer 将 PDF 附加到电子邮件

转载 作者:可可西里 更新时间:2023-11-01 13:05:49 25 4
gpt4 key购买 nike

我在 symfony2 中使用 swiftmailer 发送电子邮件,但我想将指定的 PDF 文件添加为电子邮件的文件附件。我该怎么做?

这是我当前的代码:

$message = \Swift_Message::newInstance()
->setSubject('Hello Email')
->setFrom('send@example.com')
->setTo('recipient@example.com')
->setBody(
$this->renderView(
'HelloBundle:Hello:email.txt.twig',
array('name' => $name)
)
)
;
$this->get('mailer')->send($message);

最佳答案

您有多种选择可以使用 swift mailer 将文档附加到电子邮件。

来自 symfony 文档:

    $message = Swift_Message::newInstance()
->setFrom('from@example.com')
->setTo('to@example.com')
->setSubject('Subject')
->setBody('Body')
->attach(Swift_Attachment::fromPath('/path/to/a/file.zip'))
;

$this->getMailer()->send($message);

关于php - 如何在 Symfony2 中使用 Swiftmailer 将 PDF 附加到电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25113666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com