gpt4 book ai didi

php - 如何在 Symfony 中向电子邮件添加附件?

转载 作者:行者123 更新时间:2023-12-03 00:32:55 25 4
gpt4 key购买 nike

我想向电子邮件添加附件。我正在使用 sfmailer 类。

这里我给出了下面的代码:

$mail_body = '<p>custom html mail content</p>';
$message = Swift_Message::newInstance('Message title')
->setFrom(array('sender'))
->setTo(array('receiver'))
->setBody($mail_body, 'text/html', 'utf-8');

try {
$this->getMailer()->send($message);
}
catch(Exception $e) {

}

最佳答案

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

来自the symfony doc :

$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);

还有许多其他可能性来自 the swift mailer doc .

关于php - 如何在 Symfony 中向电子邮件添加附件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10846210/

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