मैं एक ईमेल में एक संलग्नक जोड़ना चाहता हूं। मैं 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) {
}
http://swiftmailer.org/docs/messages.html#attaching-files – Adam