PHP,通讯模板

时间:2013-09-30 21:03:31

标签: php phpmailer newsletter

我正在向PHP + PHPMailer发送新闻。其实我写了这段代码:

$message = file_get_contents('templates/gallery.php');
// Replace the % with the actual information 
$message = str_replace('%username%', $username, $message); 

$mail = new PHPMailer();
$mail->IsHTML(true);
$mail->CharSet = "UTF-8";
$mail->AddAddress('miblint@gmail.com');
$mail->Subject = 'Your account information';
$mail->Body = $message;
!$mail->Send();

但现在,我需要在简讯中发送优惠。是否有另一种方法可以通过循环交易将内容附加到模板?

1 个答案:

答案 0 :(得分:0)

您可以使用TwigSmarty等模板系统来解析内容。然后将内容放入您的邮件。