Hi,
I'm using the php mail function and I'm not including headers, but I tried with "Content-type: text/plain\r\n" and neither works. The mail function return value is always 1.
How can I add valid an email in cPanel?
Here is an example:
<?php
$to = "test@*******.x10.bz";
$subject = "Test";
$message = "Hello world";
echo(mail($to,$subject,$message, $headers));
?>
It was working fine yesterday before the network problem x10 had.
Thnx!