added first three mockups

This commit is contained in:
2026-07-20 05:38:53 -05:00
parent 4dce423c4f
commit f839df7863
864 changed files with 235286 additions and 1 deletions
+46
View File
@@ -0,0 +1,46 @@
<?php
$subject = 'You Got Message'; // Subject of your email
$to = 'info@example.com'; //Recipient's E-mail
$emailTo = $_REQUEST['email'];
$name = $_REQUEST['name'];
$email = $_REQUEST['email'];
$subject = $_REQUEST['subject'];
$phone = $_REQUEST['phone'];
$msg = $_REQUEST['message'];
$date = $_REQUEST['time'];
$city = $_REQUEST['date'];
$states = $_REQUEST['states'];
$service = $_REQUEST['service'];
$email_from = $name.'<'.$email.'>';
$headers = "MIME-Version: 1.1";
$headers .= "Content-type: text/html; charset=iso-8859-1";
$headers .= "From: ".$name.'<'.$email.'>'."\r\n"; // Sender's E-mail
$headers .= "Return-Path:"."From:" . $email;
$message .= 'Name : ' . $name . "\n";
$message .= 'Phone : ' . $phone . "\n";
$message .= 'Message : ' . $msg . "\n";
$message .= 'Email : ' . $email . "\n";
$message .= 'Time : ' . $time . "\n";
$message .= 'Date : ' . $date . "\n";
$message .= 'State : ' . $state . "\n";
$message .= 'Subject : ' . $subject . "\n";
$message .= 'Service : ' . $service . "\n";
$message .= 'Message : ' . $msg;
if (@mail($to, $subject, $message, $email_from))
{
// Transfer the value 'sent' to ajax function for showing success message.
echo 'Thank you for getting in touch!
We appreciate you contacting us about [subject, e.g. pre-sale query]. One of our customer happiness members will be getting back to you within a few hours.';
}
else
{
// Transfer the value 'failed' to ajax function for showing error message.
echo 'failed';
}
?>