Server : LiteSpeed System : Linux us-phx-web1202.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u615232177 ( 615232177) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/u615232177/public_html/ |
<?php use PHPMailer\PHPMailer\PHPMailer;use PHPMailer\PHPMailer\Exception;use PHPMailer\PHPMailer\SMTP; session_start();
$page_name = basename($_SERVER['PHP_SELF']);
include("header.php"); ?>
<title><?php echo $company_name; ?>, Contact us</title>
<link rel="stylesheet" type="text/css" href="styles/contact.css">
<?php
$msg='';$captcha_error=""; $errors=0;;
if (isset($_POST["send_message"])) {
//include("captcha_start.php");
if($errors == 0){
$subject = mysqli_real_escape_string($con,$_POST['subject']);
$last_name = mysqli_real_escape_string($con,$_POST['last_name']);
$first_name = mysqli_real_escape_string($con,$_POST['first_name']);
$email = mysqli_real_escape_string($con,$_POST['email']);
$message1 = mysqli_real_escape_string($con,$_POST['message']);
$msg = '';
require 'PHPMailer/src/PHPMailer.php';
require 'PHPMailer/src/SMTP.php';
require 'PHPMailer/src/Exception.php';
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Host = "smtp.titan.email"; // sets the SMTP server
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Set encryption to STARTTLS
$mail->Port = 587; // Use port 587 for TLS
$mail->Username = "$no_reply_email"; // SMTP account username
$mail->Password = "$no_reply_password"; // SMTP account password
$mail->SetFrom("$no_reply_email", "$company_name");//Use a fixed address in your own domain as the from address
$mail->AddReplyTo("$email","$email"); //Put the submitter's address in a reply-to header
$mail->Subject = "$subject";
$mail->MsgHTML("<html><body>$message1</body></html>");
$mail->AddAddress("$company_email", "Contact Form");//Send the message to yourself, or whoever should receive contact for submissions
//$mail->AddAttachment(""); // attachment
if(!$mail->Send()) {
//echo "Mailer Error: " . $mail->ErrorInfo;
$msg = "<div class='alert alert-danger'>
<a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a>
<b>Something went wrong, please try again</b>
</div>";
}
else {
$msg = "<div class='alert alert-success'>
<a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a>
<b>Email Sent</b>
</div>";
}
//email an autoresponse to the person too
$mail->clearAddresses();
$mail->clearReplyTos();
$subject1 = "Thanks for contacting us"; // form field
$email_topic = "Thanks for contacting us";
$button_link = "$link/sign_in.php";
$button_text = "Login";
$message="";
include("email_header.php");
$message .= "
Dear $first_name,<br/><br/>
Thank you for reaching out to us! We have received your message and our team is already reviewing it. You will hear from us soon with an update.
<br/><br/>
The $company_name Team.<br/>
$email_logo
";
include("email_footer.php");
$mail->SetFrom("$no_reply_email", "$company_name");//Use a fixed address in your own domain as the from add
$mail->AddAddress("$email", "$email");//Send the message to yourself, or whoever should receive contact for submissions
$mail->AddReplyTo("$company_email", "$company_name"); //Put the submitter's address in a reply-to header
$mail->Subject = "$subject1";
$mail->MsgHTML("<html><body>$message<br></body></html>");
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
$msg = "Email not sent, please try again Mailer Error: ".$mail->ErrorInfo;
}
else {
//echo "Thanks for getting in touch, we will get back to ASAP";
$msg = "<span style='color:steelblue;'>Hey $first_name thanks for getting in touch with us, we will get back to you very shortly!</span>";
}
}
}
?>
<!-- Start All Title Box -->
<div class="all-title-box">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Contact Us</h2>
<ul class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item active"> Contact Us </li>
</ul>
</div>
</div>
</div>
</div>
<!-- End All Title Box -->
<!-- Start Contact Us -->
<div class="contact-box-main">
<div class="container">
<div class="row">
<div class="col-lg-12">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3956.3167115263814!2d3.9374915747899815!3d7.430161611964186!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1039ed0dfe79330d%3A0x479c3544e3d59f1e!2sFood%20Village!5e0!3m2!1sen!2sng!4v1699027481180!5m2!1sen!2sng" width="" height="450" style="border:0;width:100%;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<br><br>
</div>
<div class="col-lg-8 col-sm-12">
<div class="contact-form-right">
<h2>GET IN TOUCH</h2>
<p>Do you have any question, comments or remarks? We would love to hear from you. To get in touch kindly send us a message using the form below:</p>
<?php echo"<h2>$msg</h2>"; ?>
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="post" id="">
<div class="row">
<div class="col-md-12">
<div class="form-group">
<input type="text" class="form-control" id="first_name" name="first_name" placeholder="First Name" required data-error="Please enter your first name">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<input type="text" class="form-control" id="last_name" name="last_name" placeholder="Last Name" required data-error="Please enter your last name">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<input type="text" placeholder="Your Email" id="email" class="form-control" name="email" required data-error="Please enter your email">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<input type="text" class="form-control" id="subject" name="subject" placeholder="Subject" required data-error="Please enter your Subject">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea class="form-control" id="message" placeholder="Your Message" name='message' rows="4" data-error="Write your message" required></textarea>
<div class="help-block with-errors"></div>
</div>
<div class="submit-button text-center">
<button class="btn hvr-hover" id="submit" type="submit" name='send_message'>Send Message</button>
<div id="msgSubmit" class="h3 text-center hidden"></div>
<div class="clearfix"></div>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="col-lg-4 col-sm-12">
<div class="contact-info-left">
<h2>CONTACT INFO</h2>
<p>We have dedicated customer satisfaction specialists who are standing by to attend to you.</p>
<ul>
<li>
<p><i class="fas fa-map-marker-alt"></i>Address: <?php echo $company_address; ?></p>
</li>
<li>
<p><i class="fas fa-phone-square"></i>Phone: <a href="tel:<?php echo $company_phone; ?>"><?php echo $company_phone; ?></a></p>
</li>
<li>
<p><i class="fas fa-envelope"></i>Email: <a href="mailto:=<?php echo $company_email; ?>"><?php echo $company_email; ?></a></p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End Cart -->
<?php include("footer.php"); ?>