View Single Post
Old 01-25-2013, 04:12 PM   PM User | #1
jarv
Banned

 
Join Date: Mar 2007
Posts: 1,523
Thanks: 116
Thanked 0 Times in 0 Posts
jarv can only hope to improve
mail script sends mail when testing locally but not live

hi,

When i was testing my site, the send mail code was working fine, now I have uploaded it to my live server, I'm not recieving any email and there are no errors?!

here is the code:

PHP Code:
        $body 'Someone with the email: '.$emailaddress.' voted for: '.$opt[$z];

 
$to "jarv@email.co.uk";
 
$subject "New vote submitted";
 if (
mail($to$subject$body)) {
   echo(
"<p>Message successfully sent!</p>");
  } else {
   echo(
"<p>Message delivery failed…</p>");
  } 
jarv is offline   Reply With Quote