init
This commit is contained in:
48
php/mail.php
Normal file
48
php/mail.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
include 'functions.php';
|
||||
|
||||
if (!empty($_POST)){
|
||||
|
||||
$data['success'] = true;
|
||||
$_POST = multiDimensionalArrayMap('cleanEvilTags', $_POST);
|
||||
$_POST = multiDimensionalArrayMap('cleanData', $_POST);
|
||||
|
||||
//your email adress
|
||||
$emailTo ="yourmail@yoursite.com"; //"yourmail@yoursite.com";
|
||||
|
||||
//from email adress
|
||||
$emailFrom ="contact@yoursite.com"; //"contact@yoursite.com";
|
||||
|
||||
//email subject
|
||||
$emailSubject = "Mail from Porta";
|
||||
|
||||
$name = $_POST["name"];
|
||||
$email = $_POST["email"];
|
||||
$comment = $_POST["comment"];
|
||||
if($name == "")
|
||||
$data['success'] = false;
|
||||
|
||||
if (!preg_match("/^[_\.0-9a-zA-Z-]+@([0-9a-zA-Z][0-9a-zA-Z-]+\.)+[a-zA-Z]{2,6}$/i", $email))
|
||||
$data['success'] = false;
|
||||
|
||||
|
||||
if($comment == "")
|
||||
$data['success'] = false;
|
||||
|
||||
if($data['success'] == true){
|
||||
|
||||
$message = "NAME: $name<br>
|
||||
EMAIL: $email<br>
|
||||
COMMENT: $comment";
|
||||
|
||||
|
||||
$headers = "MIME-Version: 1.0" . "\r\n";
|
||||
$headers .= "Content-type:text/html; charset=utf-8" . "\r\n";
|
||||
$headers .= "From: <$emailFrom>" . "\r\n";
|
||||
mail($emailTo, $emailSubject, $message, $headers);
|
||||
|
||||
$data['success'] = true;
|
||||
echo json_encode($data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user