私はデイリーセールのウェブサイトを始めましたが、今はメールニュースレターを運営したいと思っています。すべて正常に動作しますが、バウンス メール (非アクティブなメールのみ) を処理したいと考えています。
バウンス メール ボックスを開き、非アクティブなメールのみを検出し、受信トレイを切り詰める cron スクリプトの例を誰か教えてもらえますか?
This is my example script for the newsletter:
$result = mysql_query("SELECT email FROM members");
while($row = mysql_fetch_array($result)) {
$email = $row["email"];
$subject = 'Subject of Newsletter';
$headers = "From: noreply@***.com\r\n";
$headers = "Return-Path: bounce@***.com\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=UTF-8\r\n";
$content = 'HTML Newsletter';
mail($email, $subject, $content, $headers);
}