duanshan3427 2018-06-27 10:34
浏览 103
已采纳

yii2 mandrill邮件已发送但未包含插入

How to insert contain into mandrill template using yii2 nickcv plugin. in this code test.org is my template name and i want to insert into contain. anyone have idea about it. This is the code.

\Yii::$app->mailer
->compose('test.org')
->setTo('test@mail.com')
->setSubject($setSubject)
->send();

i just want to add body like this

$body = "Hi ,Testing here";
  • 写回答

1条回答 默认 最新

  • dphnn333971 2018-06-28 06:30
    关注

    You have to use setHtmlBody function just like that

    $mailSent = Yii::$app->mailer
                    ->compose($template_name)
                    ->setFrom('test@mail.org')
                    ->setTo($to_email)
                    ->setSubject($setSubject)
                    ->setHtmlBody($setTextBody['html'])
                    ->send();
            return $mailSent;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?