Contact"; if (!$irpg_site_email) { echo "
Config error. The config file was not loaded correctly.\n"; } else if ($irpg_site_email == "disabled") { echo "
Email is disabled.\n"; } else if ($irpg_site_email == "php" && $_POST['from'] && $_POST['text']) { $to = $admin_email; $subject = "IdleRPG: ".$_POST['from']; $message = "Name: ".$_POST['name']."\nE-mail: ".$_POST['from']."\n\n".$_POST['text']; $additional_headers = "From: ".$_POST['from']."\r\n"; mail($to, $subject, $message, $additional_headers); echo "
Thanks for your submission.\n"; } else if ($irpg_site_email == "smtp" && $_POST['from'] && $_POST['text']) { echo "
SMTP Email is under construction. Your submission was not submitted.\n"; } else { echo " \n"; } include("footer.php"); ?>