创建了一个 shell 类 EmailShell,它将呈现给定电子邮件模板的 html 并将其传递给 Mandrill Api 服务。
App::uses('View', 'Core');
class EmailShell extends AppShell {
function startup() {
parent::startup();
$useDbConfig = 'default';
}
function new_user_created(){
$html = $this->getEmailTemplateHtml('new_user');
$post_fields['message'] = array(
"html" => $html,
"text" => strip_tags($html),
"from_email" => "from@example.com",
"subject" => "subject goes here.",
"to" => "to@example.com"
);
$Mandril = ClassRegistry::init("Mandril");
$Mandril->sendEmail($post_fields);
}
private function getEmailTemplateHtml($template, $layout = 'default', $custom_data = false){
$v = new View();
$v->set("data", $custom_data);
return $v->render('Emails/'.$template, $layout);
}
}
现在在执行shell命令
$> 蛋糕电子邮件 new_user_created
它返回我以下错误消息。
*PHP 致命错误:在第 22 行的 C:\wamp\www\cakephp_application\app\Console\Command\EmailShell.php 中找不到类“视图”*
如何获取我的电子邮件模板的 html,以便将其传递给 Mandril 服务?