我正在使用下面的代码,该代码使用模板作为正文发送html电子邮件。如何将纯文本版本与html版本一起包含?我想使用另一个模板来包含所有文本。
由于
$transport = new Zend_Mail_Transport_Smtp('smtp.domain.com', $config);
$HTMLText = $html->render('forgot-password.phtml');
$mail = new Zend_Mail();
$mail->setHeaderEncoding(Zend_Mime::ENCODING_BASE64);
$mail->setBodyHtml($HTMLText);
$mail->setFrom('name@domain.com', 'Name');
$mail->addTo($userDataPost['user_email']);
$mail->setSubject('Your new password');
$mail->send($transport);
答案 0 :(得分:1)
setBodyText(string)函数怎么样?