diff --git a/index.html b/index.html index ad77d65..fc3ad1c 100644 --- a/index.html +++ b/index.html @@ -919,7 +919,7 @@

Open Hours

-
+
Open Hours
-$(document).ready(function (e){ -$("#frmContact").on('submit',(function(e){ - e.preventDefault(); - $('#loader-icon').show(); - var valid; - valid = validateContact(); - if(valid) { - $.ajax({ - url: "contact_mail.php", - type: "POST", - data: new FormData(this), - contentType: false, - cache: false, - processData:false, - success: function(data){ - $("#mail-status").html(data); - $('#loader-icon').hide(); - }, - error: function(){} - - }); - } -})); - -require('phpmailer/class.phpmailer.php'); -$mail = new PHPMailer(); -$mail->IsSMTP(); -$mail->SMTPDebug = 0; -$mail->SMTPAuth = TRUE; -$mail->SMTPSecure = "tls"; -$mail->Port = 587; -$mail->Username = "Your SMTP UserName"; -$mail->Password = "Your SMTP Password"; -$mail->Host = "Your SMTP Host"; -$mail->Mailer = "smtp"; -$mail->SetFrom($_POST["userEmail"], $_POST["userName"]); -$mail->AddReplyTo($_POST["userEmail"], $_POST["userName"]); -$mail->AddAddress("recipient address"); -$mail->Subject = $_POST["subject"]; -$mail->WordWrap = 80; -$mail->MsgHTML($_POST["content"]); - -if(is_array($_FILES)) { - $mail->AddAttachment($_FILES['attachmentFile']['tmp_name'],$_FILES['attachmentFile']['name']); -} - -$mail->IsHTML(true); -if(!$mail->Send()) { - echo "Problem in Sending Mail."; -} else { - echo "Contact Mail Sent."; -} + - - - - - -