• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

php mail not working

vprasad84

New Pleskian
hi,

all of a sudden the php mail is not delivering the emails to the recepients. kindly find a sample code which i am running

<?php
$to = "prasad@itisl.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you.......?";
$headers = "From: prasad@itisl.com\r\n" .
"X-Mailer: php";
if (mail($to, $subject, $body, $headers)) {
echo("<p>Message sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>


even after hitting this page, i get the 'Message Sent' message which indicates that the mail is properly processed by php however i am unable to get the mail in my mailbox. too my mailbox is on the same server itself. Also verified that tte sendmail path in /etc/php.ini is still set to /var/qmail/bin/sendmail

we are even unable to see any errors in maillog. In maillog it shows as the message is submitted by anonymous@(our hostname)

All was working fine before the plesk upgrade of 7.5 > 8.3 but seems that after upgradation it has stopped working,kindly suggest with this regards
 
Hello vprasad84

A 'feature/bug' :) has appeared in Plesk versions 8.x. that doesn't comply with RFC 2822 in the mail() function.

Replace the \r\n in the $headers section of your code with just \n and your emails should then work as expected.
 
I've just spotted that you also need to add a line-feed (\n) after X-Mailer: php
i.e. X-Mailer: php\n"
 
Back
Top