1

我正在使用 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();

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

4

1 回答 1

0

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

于 2013-09-30T21:10:22.077 回答