10
我想添加附件到電子郵件。我正在使用sfmailer類。如何在Symfony中添加附件到電子郵件?
在這裏,我已經給我下面的代碼:
$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) {
}
http://swiftmailer.org/docs/messages.html#attaching-files – Adam