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>");
}