我正在向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();
但现在,我需要在简讯中发送优惠。是否有另一种方法可以通过循环交易将内容附加到模板?