作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想向电子邮件添加附件。我正在使用 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/
我是一名优秀的程序员,十分优秀!