$to = "jijodasgupta@gmail.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body)) {
echo("pMessage successfully sent!/p");
} else {
echo("pMessage delivery failed.../p");
}
Ama bana aşağıdaki hatayı veriyor temel php sendmail kodu yazmış:
Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in C:\xampp\htdocs\mail.php on line 5 Message delivery failed...
I changed the `php.ini file and put
sendmail_from=jijodasgupta@gmail.com` but still the problem persists.
Writing the mail script for the first time.
Ben yanlış bir şey yapıyorum? Bunu yapmak için daha iyi bir yolu var mı?