Created
December 6, 2017 16:04
-
-
Save kharakhordindemo/1da7e4bf83f94486f6492750a2a6fc3b to your computer and use it in GitHub Desktop.
unimail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>uniMail</title> | |
</head> | |
<body> | |
<form> | |
<!-- Hidden Required Fields --> | |
<input type="hidden" name="project_name" value="Site Name"> | |
<input type="hidden" name="admin_email" value="[email protected]"> | |
<input type="hidden" name="form_subject" value="Form Subject"> | |
<!-- END Hidden Required Fields --> | |
<input type="text" name="Name" placeholder="You name..." required><br> | |
<input type="text" name="E-mail" placeholder="You E-mail..." required><br> | |
<input type="text" name="Phone" placeholder="You phone..."><br> | |
<button>Send</button> | |
</form> | |
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script> | |
<script src="script.js"></script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$method = $_SERVER['REQUEST_METHOD']; | |
//Script Foreach | |
$c = true; | |
if ( $method === 'POST' ) { | |
$project_name = trim($_POST["project_name"]); | |
$admin_email = trim($_POST["admin_email"]); | |
$form_subject = trim($_POST["form_subject"]); | |
foreach ( $_POST as $key => $value ) { | |
if ( $value != "" && $key != "project_name" && $key != "admin_email" && $key != "form_subject" ) { | |
$message .= " | |
" . ( ($c = !$c) ? '<tr>':'<tr style="background-color: #f8f8f8;">' ) . " | |
<td style='padding: 10px; border: #e9e9e9 1px solid;'><b>$key</b></td> | |
<td style='padding: 10px; border: #e9e9e9 1px solid;'>$value</td> | |
</tr> | |
"; | |
} | |
} | |
} else if ( $method === 'GET' ) { | |
$project_name = trim($_GET["project_name"]); | |
$admin_email = trim($_GET["admin_email"]); | |
$form_subject = trim($_GET["form_subject"]); | |
foreach ( $_GET as $key => $value ) { | |
if ( $value != "" && $key != "project_name" && $key != "admin_email" && $key != "form_subject" ) { | |
$message .= " | |
" . ( ($c = !$c) ? '<tr>':'<tr style="background-color: #f8f8f8;">' ) . " | |
<td style='padding: 10px; border: #e9e9e9 1px solid;'><b>$key</b></td> | |
<td style='padding: 10px; border: #e9e9e9 1px solid;'>$value</td> | |
</tr> | |
"; | |
} | |
} | |
} | |
$message = "<table style='width: 100%;'>$message</table>"; | |
function adopt($text) { | |
return '=?UTF-8?B?'.Base64_encode($text).'?='; | |
} | |
$headers = "MIME-Version: 1.0" . PHP_EOL . | |
"Content-Type: text/html; charset=utf-8" . PHP_EOL . | |
'From: '.adopt($project_name).' <'.$admin_email.'>' . PHP_EOL . | |
'Reply-To: '.$admin_email.'' . PHP_EOL; | |
mail($admin_email, adopt($form_subject), $message, $headers ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$method = $_SERVER['REQUEST_METHOD']; | |
//Script Foreach | |
$c = true; | |
if ( $method === 'POST' ) { | |
$project_name = $modx->getOption('site_name'); | |
$admin_email = $modx->getOption('emailsender'); | |
$form_subject = "Заявка с сайта " . $modx->getOption('site_name') . ""; | |
foreach ( $_POST as $key => $value ) { | |
if ( $value != "" && $key != "project_name" && $key != "admin_email" && $key != "form_subject" ) { | |
$message .= " | |
" . ( ($c = !$c) ? '<tr>':'<tr style="background-color: #f8f8f8;">' ) . " | |
<td style='padding: 10px; border: #e9e9e9 1px solid;'><b>$key</b></td> | |
<td style='padding: 10px; border: #e9e9e9 1px solid;'>$value</td> | |
</tr> | |
"; | |
} | |
} | |
} else if ( $method === 'GET' ) { | |
$project_name = trim($_GET["project_name"]); | |
$admin_email = trim($_GET["admin_email"]); | |
$form_subject = trim($_GET["form_subject"]); | |
foreach ( $_GET as $key => $value ) { | |
if ( $value != "" && $key != "project_name" && $key != "admin_email" && $key != "form_subject" ) { | |
$message .= " | |
" . ( ($c = !$c) ? '<tr>':'<tr style="background-color: #f8f8f8;">' ) . " | |
<td style='padding: 10px; border: #e9e9e9 1px solid;'><b>$key</b></td> | |
<td style='padding: 10px; border: #e9e9e9 1px solid;'>$value</td> | |
</tr> | |
"; | |
} | |
} | |
} | |
$message = "<table style='width: 100%;'>$message</table>"; | |
function adopt($text) { | |
return '=?UTF-8?B?'.Base64_encode($text).'?='; | |
} | |
$headers = "MIME-Version: 1.0" . PHP_EOL . | |
"Content-Type: text/html; charset=utf-8" . PHP_EOL . | |
'From: '.adopt($project_name).' <'.$admin_email.'>' . PHP_EOL . | |
'Reply-To: '.$admin_email.'' . PHP_EOL; | |
mail($admin_email, adopt($form_subject), $message, $headers ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
//E-mail Ajax Send | |
$("form").submit(function() { //Change | |
var th = $(this); | |
$.ajax({ | |
type: "POST", | |
url: "mail.php", //Change | |
data: th.serialize() | |
}).done(function() { | |
alert("Thank you!"); | |
setTimeout(function() { | |
// Done Functions | |
th.trigger("reset"); | |
}, 1000); | |
}); | |
return false; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment