PHP kullanarak posta hataları işleme?

0 Cevap php

Bu adrese GMail üzerinden bir e-posta göndermek nkhkhlkhlkjlkjkljlkjlk@gmail.com

Ben gibi hata var:

Aşağıdaki alıcılara gönderilemedi

Benim soru PHP mail fonksiyonu kullanarak göndermek eğer sıçrama e-postalar nasıl yakalamak, nedir?

Benim kod:

// To send HTML mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";

$to = "nkhkhlkhlkjlkjkljlkjlk@gmail.com";
$subject = "Testing";
$message = "Testing body";

mail($to, $subject, $message, $headers); 

0 Cevap