我目前正在使用 swiftmailer 附加邮件。我有时需要将图像文件附加到邮件中,有时我必须在没有附件的情况下发送邮件。
这是我试过的
function sendMail($mailer,$subject , $to , $msg, $isAttachment, $attach)
{
$message = \Swift_Message::newInstance()
->setSubject($subject)
->setFrom('abc@gmail.com')
->setTo('xyz@gmail.com')
->setBody($msg)
->setContentType("text/html");
if($isAttachment){
$message->attach(Swift_Attachment::fromPath($attach));
}
$this->get('mailer')->send($message);
}
$isAttachment
是一个布尔变量,1
如果有附件。
这是我得到的错误。
Fatal error: Class 'MyProject\FrontBundle\Controller\Swift_Attachment' not found in /var/www/ABC/src/Myproject/FrontBundle/Controller/trialController.php on line 187
这是我第一次在 swiftmailer 工作。如果这个问题听起来很幼稚,请原谅我。
提前致谢。