Ben e-postalar göndermek için bir PHP komut dosyası yazdı.
Benim komut dosyası bu gibi:
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: abc@yahoo.com' . "\r\n";
// Email Variables
$toUser = "someone@yahoo.com"; // recipient
$subject = "testing"; // subject
$body = "<html><body><p>
Example of including an image via html \<img\> tag:
<br>
<img src='../images/profile.jpg'>
<br>
My new picture
<br></p></body></html>"; // content
if (mail($toUser,$subject,$body,$headers)) {
echo "sent";
} else {
echo "failed";
}
Eh, tabii ki gönderici ve alıcı için geçerli bir e-posta adresini kullanabilirsiniz. Ben e-posta aldım, ama önemsiz posta gider. Yani google araştırma için gitti. Çünkü benim "başlık" komut dosyası sorun? Değilse, o zaman ne benim senaryom önemsiz posta göndermek için neden olabilir? Herhangi bir çözüm?