如何将“HTML格式”添加到“基于Swift Mail教程”的PHP电子邮件中?

我为客户开发了一个竞赛页面,他们希望客户收到的电子邮件不仅仅是文本.我使用的教程仅在“发送正文消息”中提供了简单的文本.我需要添加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');

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...