The following little program, that WORKS on two other servers that I use, will not work on Voda... would someone take a look and see what the problem might be?
The problem:No email is sent to me (rosco)
I also have the same problem when using Voda's form builder... that is, no email is ever sent.
Thank you,
Buck
Domain name:buckswebsite.net
<HTML>
<BODY>
<?php
// The message
$message = "Line 1\nLine 2\nLine 3";
// In case any lines are larger than 70 characters, use wordwrap()
$message = wordwrap($message, 70);
// Send
mail('rosco@bellsouth.net', 'My Subject555', $message);
?>
</BODY>
</HTML>
The problem:No email is sent to me (rosco)
I also have the same problem when using Voda's form builder... that is, no email is ever sent.
Thank you,
Buck
Domain name:buckswebsite.net
<HTML>
<BODY>
<?php
// The message
$message = "Line 1\nLine 2\nLine 3";
// In case any lines are larger than 70 characters, use wordwrap()
$message = wordwrap($message, 70);
// Send
mail('rosco@bellsouth.net', 'My Subject555', $message);
?>
</BODY>
</HTML>
Comment