File "contact_code.php"
Full path: /home/fsibplc/public_html/fsib/contact_code.php
File
size: 1005 B (1005 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
// Get data from form
$name = $_POST['name'];
$email= $_POST['email'];
$number = $_POST['phone_number'];
$subject= $_POST['msg_subject'];
//echo $name; die();
$message= $_POST['message'];
$to = "order@bdemarketing247.com";
//$subject = "This is the subject line";
// The following text will be sent
// Name = user entered name
// Email = user entered email
// Message = user entered message
$txt ="Name = ". $name . "\r\n number = ". $number . "\r\n Subject = ". $subject . "\r\n Email = "
. $email . "\r\n Message =" . $message;
$headers = "From: noreply@bdemarketing247.com" . "\r\n" .
"CC: ";
if($email != NULL) {
if(mail($to, $subject, $txt, $headers))
{
echo "<script>alert('Mail was sent !');</script>";
echo "<script>document.location.href='contact-us.php'</script>";
}
else
{
echo "<script>alert('Mail was not sent. Please try again later');</script>";
echo "<script>document.location.href='contact-us.php'</script>";
}
}
?>