我为客户开发了一个竞赛页面,他们希望客户收到的电子邮件不仅仅是文本.我使用的教程仅在“发送正文消息”中提供了简单的文本.我需要添加html以感谢客户输入,并将图像引入此电子邮件.
代码是:
//send the welcome letter
function send_email($info){
//format each email
$body = format_email($info,'html');
$body_plain_txt = format_email($info,'txt');
//setup the mailer
$transport = Swift_MailTransport::newInstance();
$mailer = Swift_Mailer::newInstance($transport);
$message = Swift_Message::newInstance();
$message ->setSubject('Thanks for entering the competition');
$message ->setFrom(array('info@examplemail.com' => 'FromEmailExample'));
$message ->setTo(array($info['email'] => $info['name']));
$message ->setBody('Thanks for entering the competition, we will be in touch if you are a lucky winner.');
$result = $mailer->send($message);
return $result;
}
这个function.PHP工作表正在运行,客户正在接收他们的电子邮件,我只需要更改
(‘Thanks for entering the competition,
we will be in touch if you are a lucky
winner.’)
改为使用HTML代替……
如果可以的话,请向我提供一个如何将HTML集成到此功能中的示例.
解决方法:
您也可以将’text / html’添加到setBody(ref):
->setBody($this->renderView('YouBundleName:Default:email.html.twig'), 'text/html');