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

yii2 mandrill mail is sent but not insert contain

如何使用 yii2 nickcv 插件将包含插入 mandrill 模板。在此代码中 test.org 是我的模板名称,我想插入到包含中。任何人都知道它。 这是代码。

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

我只想像这样添加正文

$body = "Hi ,Testing here";

你必须像那样使用setHtmlBody函数

$mailSent = Yii::$app->mailer
                ->compose($template_name)
                ->setFrom('test@mail.org')
                ->setTo($to_email)
                ->setSubject($setSubject)
                ->setHtmlBody($setTextBody['html'])
                ->send();
        return $mailSent;