Chcę dodać załącznik do wiadomości e-mail. Używam klasy sfmailer.jak dodać załącznik do wiadomości e-mail w Symfony?
Oto dałem mój kod poniżej:
$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