I have this PHP Mail code:
<?php
$to = 'chipperyman573@gmail.com';
$subject = 'Application for IGN '.$_POST["IGN"];
$message = 'Skype account: '.$_POST["skype"].'. IGN: '.$_POST["IGN"].'. Timezone: '.$_POST["Timezone"].'. Gender: '.$_POST["Gender"].' Livestreaming/Youtubing: '.$_POST["yt"].'. Accepts rules: '.$_POST["rules"];
$headers = 'From: apply@chipperyman573.com' . "\r\n" .
'Reply-To: apply@chipperyman573.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
The webpage loads fine, however I don't get the email.
I checked all the $_POST
variables and they're all fine.