\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers .= "Message-ID: <".time().rand(1,1000)."@".$_SERVER['SERVER_NAME'].">". "\r\n"; if(@mail($to_email, $email_subject, $vpb_message_body, $headers)) { $status='Success'; //Displays the success message when email message is sent $output="Congrats ".$fname.", Thank you for your inquiry. Our sales team has been notified and will be in touch shortly."; } else { $status='error'; //Displays an error message when email sending fails $output="Sorry, your email could not be sent at the moment. Please try again or contact this website admin to report this error message if the problem persist. Thanks."; } } else{ $status='error'; $output="please fill require fields"; } echo json_encode(array('status'=> $status, 'msg'=>$output)); ?>