PHPMAilerでニュースレターを送りたいです。ニュースレターは機能しますが、これを行うためのより良いオプションがあるかどうか疑問に思っています.
私が持っているのは。
- HTML ページ
- 画像
今私のコードは次のようになります
$mail = new PHPMailer();
//Adding the body
$body = file_get_contents('template/index.htm');
$mail->Subject = "PHPMailer Test Subject via mail(), basic";
$mail->AltBody = "To view this message, please use an HTML compatible email viewer!";
$mail->SetFrom('xxxxxxx', 'xxxxxxxxxx');
$address = ".......@gmail.com";
$mail->AddAddress($address, "xxxxxxx");
$mail->AddEmbeddedImage("template/images/bullet_point.gif","1");
$mail->AddEmbeddedImage("template/images/template_1_01.gif","2");
$mail->AddEmbeddedImage("template/images/template_1_03.gif","3");
$mail->MsgHTML($body);
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
file_get_contents を使用して HTML ページを取得し、AddEmbeddedImage を使用して画像を埋め込みます。HTML ページのみを PHPMailer に渡し、PHP Mailer がこれらの画像を自動的に埋め込む方法はありますか?