11

我想在电子邮件中添加附件。我正在使用 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) {

}
4

2 回答 2

31

您有几个选项可以使用 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);

以及来自swift mailer doc 的许多其他可能性。

于 2012-06-01T07:51:35.037 回答
3

您也可以按资源附加文件。

$message = Swift_Message::newInstance()
  ->setFrom('from@example.com')
  ->setTo('to@example.com')
  ->setSubject('Subject')
  ->setBody('Body')
  ->attach(Swift_Attachment::newInstance($content, 'invoice.pdf','application/pdf'));
于 2017-11-03T06:12:58.417 回答