Jump to content

Mail Function Not Working on a Particular Domain


thestars

Recommended Posts

Hi,

I used the PHP mail function for sending email. The script below works on one server, but not another. Mail  sent successfully but cannot be retrieved . Does anyone know whats going on?Is it anything related to domain?

 

<?php

$to = "[email protected]";

$subject = "Test mail";

$message = "Hello World.";

$headers = "From: [email protected]" . "\r\n";

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

echo "Mail Sent.";

?>

  • 4 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.