Mini Shell

Direktori : /home/athamevents/public_html/php/
Upload File :
Current File : /home/athamevents/public_html/php/request_call.php

<?php

$to = 'venupk88@gmail.com';  // please change this email id

$errors = array();
// print_r($_POST);

// Check if name has been entered
if (!isset($_POST['subject'])) {
    $errors['subject'] = 'Please choose your subject';
}

// Check if email has been entered and is valid
if (!isset($_POST['name'])) {
    $errors['name'] = 'Please enter your name';
}

//Check if message has been entered
if (!isset($_POST['phone'])) {
    $errors['phone'] = 'Please enter your contact number';
}

$errorOutput = '';

if(!empty($errors)){

    $errorOutput .= '<div class="alert alert-danger alert-dismissible" role="alert">';
    $errorOutput .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>';

    $errorOutput  .= '<ul>';

    foreach ($errors as $key => $value) {
        $errorOutput .= '<li>'.$value.'</li>';
    }

    $errorOutput .= '</ul>';
    $errorOutput .= '</div>';

    echo $errorOutput;
    die();
}



$subject = $_POST['subject'];
$name = $_POST['name'];
$phone = $_POST['phone'];
$from = $name;
$subject = 'Please Call Me : Titan - Responsive HTML5 Template for Consultants & Professionals';

$body = "From: $name\n Phone: $phone\n Subject:\n $subject";

$headers = "From: ".$from;


//send the email
$result = '';
if (mail ($to, $subject, $body, $headers)) {
    $result .= '<div class="alert alert-success alert-dismissible" role="alert">';
    $result .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>';
    $result .= 'Thank You! I will be in touch';
    $result .= '</div>';

    echo $result;
    die();
}

$result = '';
$result .= '<div class="alert alert-danger alert-dismissible" role="alert">';
$result .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>';
$result .= 'Something bad happend during sending this message. Please try again later';
$result .= '</div>';

echo $result;
die();


?>

Zerion Mini Shell 1.0