<?php
$to = "[email protected]";
$subject = $_POST['subject'];
$body = "From, ".$_POST['name']."\n\n"."Email, ".$_POST['email']."\n\n".$_POST['message'];
if (mail($to, $subject, $body)) {
$responseArray = array('class' => 'alert alert-success', 'message' => 'Message sent successfully. Thank you, will get back to you soon!');
} else {
$responseArray = array('class' => 'alert alert-danger', 'message' => 'There was an error while submitting the form. Please try again later.');
}
$encoded = json_encode($responseArray);
header('Content-Type: application/json');
echo $encoded;
?>
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]