form tweak
This commit is contained in:
parent
4b5a191797
commit
015db9b3af
@ -1,76 +1,47 @@
|
|||||||
<?php
|
<?php
|
||||||
if (isset($_POST['Email'])) {
|
//Import PHPMailer classes into the global namespace
|
||||||
|
//These must be at the top of your script, not inside a function
|
||||||
|
use PHPMailer\PHPMailer\PHPMailer;
|
||||||
|
use PHPMailer\PHPMailer\SMTP;
|
||||||
|
use PHPMailer\PHPMailer\Exception;
|
||||||
|
|
||||||
// EDIT THE 2 LINES BELOW AS REQUIRED
|
//Load Composer's autoloader
|
||||||
$email_to = "benoti.san@gmail.com";
|
require 'vendor/autoload.php';
|
||||||
$email_subject = "New form submissions";
|
|
||||||
|
|
||||||
function problem($error)
|
//Instantiation and passing `true` enables exceptions
|
||||||
{
|
$mail = new PHPMailer(true);
|
||||||
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
|
|
||||||
echo "These errors appear below.<br><br>";
|
|
||||||
echo $error . "<br><br>";
|
|
||||||
echo "Please go back and fix these errors.<br><br>";
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
|
|
||||||
// validation expected data exists
|
try {
|
||||||
if (
|
//Server settings
|
||||||
!isset($_POST['Name']) ||
|
$mail->SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output
|
||||||
!isset($_POST['Email']) ||
|
$mail->isSMTP(); //Send using SMTP
|
||||||
!isset($_POST['Message'])
|
$mail->Host = 'smtp.example.com'; //Set the SMTP server to send through
|
||||||
) {
|
$mail->SMTPAuth = false; //Enable SMTP authentication
|
||||||
problem('We are sorry, but there appears to be a problem with the form you submitted.');
|
// $mail->Username = 'user@example.com'; //SMTP username
|
||||||
}
|
// $mail->Password = 'secret'; //SMTP password
|
||||||
|
// $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; //Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged
|
||||||
|
$mail->Port = 587; //TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above
|
||||||
|
|
||||||
$name = $_POST['Name']; // required
|
//Recipients
|
||||||
$email = $_POST['Email']; // required
|
$mail->setFrom('from@example.com', 'Mailer');
|
||||||
$message = $_POST['Message']; // required
|
$mail->addAddress('joe@example.net', 'Joe User'); //Add a recipient
|
||||||
|
$mail->addAddress('ellen@example.com'); //Name is optional
|
||||||
|
$mail->addReplyTo('info@example.com', 'Information');
|
||||||
|
$mail->addCC('cc@example.com');
|
||||||
|
$mail->addBCC('bcc@example.com');
|
||||||
|
|
||||||
$error_message = "";
|
//Attachments
|
||||||
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
|
$mail->addAttachment('/var/tmp/file.tar.gz'); //Add attachments
|
||||||
|
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); //Optional name
|
||||||
|
|
||||||
if (!preg_match($email_exp, $email)) {
|
//Content
|
||||||
$error_message .= 'The Email address you entered does not appear to be valid.<br>';
|
$mail->isHTML(true); //Set email format to HTML
|
||||||
}
|
$mail->Subject = 'Here is the subject';
|
||||||
|
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
|
||||||
|
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
|
||||||
|
|
||||||
$string_exp = "/^[A-Za-z .'-]+$/";
|
$mail->send();
|
||||||
|
echo 'Message has been sent';
|
||||||
if (!preg_match($string_exp, $name)) {
|
} catch (Exception $e) {
|
||||||
$error_message .= 'The Name you entered does not appear to be valid.<br>';
|
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
|
||||||
}
|
|
||||||
|
|
||||||
if (strlen($message) < 2) {
|
|
||||||
$error_message .= 'The Message you entered do not appear to be valid.<br>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strlen($error_message) > 0) {
|
|
||||||
problem($error_message);
|
|
||||||
}
|
|
||||||
|
|
||||||
$email_message = "Form details below.\n\n";
|
|
||||||
|
|
||||||
function clean_string($string)
|
|
||||||
{
|
|
||||||
$bad = array("content-type", "bcc:", "to:", "cc:", "href");
|
|
||||||
return str_replace($bad, "", $string);
|
|
||||||
}
|
|
||||||
|
|
||||||
$email_message .= "Name: " . clean_string($name) . "\n";
|
|
||||||
$email_message .= "Email: " . clean_string($email) . "\n";
|
|
||||||
$email_message .= "Message: " . clean_string($message) . "\n";
|
|
||||||
|
|
||||||
// create email headers
|
|
||||||
$headers = 'From: ' . $email . "\r\n" .
|
|
||||||
'Reply-To: ' . $email . "\r\n" .
|
|
||||||
'X-Mailer: PHP/' . phpversion();
|
|
||||||
@mail($email_to, $email_subject, $email_message, $headers);
|
|
||||||
?>
|
|
||||||
|
|
||||||
<!-- include your success message below -->
|
|
||||||
|
|
||||||
Thank you for contacting us. We will be in touch with you very soon.
|
|
||||||
|
|
||||||
<?php
|
|
||||||
}
|
}
|
||||||
?>
|
|
@ -10,7 +10,7 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||||
<title>Tben Design V3</title>
|
<title>Tben Design V3</title>
|
||||||
<meta name="description" content="Web/Graphic/Motion Designer, UI UX Designer, Frontend Web Developer">
|
<meta name="description" content="Web/Graphic/Motion Designer, UI UX Designer, Frontend Web Developer">
|
||||||
<link rel="shortcut icon" type="image/x-icon" href="/images-dw/favicon.ico">
|
<link rel="shortcut icon" href="https://www.dropbox.com/s/fftv7ewhi13tisa/favicon.ico?dl=0" type="image/x-icon">
|
||||||
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800|Material+Icons" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800|Material+Icons" rel="stylesheet">
|
||||||
|
|
||||||
|
|
||||||
|
4
vendor/composer/InstalledVersions.php
vendored
4
vendor/composer/InstalledVersions.php
vendored
@ -32,7 +32,7 @@ private static $installed = array (
|
|||||||
'aliases' =>
|
'aliases' =>
|
||||||
array (
|
array (
|
||||||
),
|
),
|
||||||
'reference' => '1e17252358281423e1fcad5533830c0f40cd7758',
|
'reference' => '4b5a19179745291bd3db18b1fc4fbbe52a772976',
|
||||||
'name' => '__root__',
|
'name' => '__root__',
|
||||||
),
|
),
|
||||||
'versions' =>
|
'versions' =>
|
||||||
@ -44,7 +44,7 @@ private static $installed = array (
|
|||||||
'aliases' =>
|
'aliases' =>
|
||||||
array (
|
array (
|
||||||
),
|
),
|
||||||
'reference' => '1e17252358281423e1fcad5533830c0f40cd7758',
|
'reference' => '4b5a19179745291bd3db18b1fc4fbbe52a772976',
|
||||||
),
|
),
|
||||||
'phpmailer/phpmailer' =>
|
'phpmailer/phpmailer' =>
|
||||||
array (
|
array (
|
||||||
|
4
vendor/composer/installed.php
vendored
4
vendor/composer/installed.php
vendored
@ -6,7 +6,7 @@
|
|||||||
'aliases' =>
|
'aliases' =>
|
||||||
array (
|
array (
|
||||||
),
|
),
|
||||||
'reference' => '1e17252358281423e1fcad5533830c0f40cd7758',
|
'reference' => '4b5a19179745291bd3db18b1fc4fbbe52a772976',
|
||||||
'name' => '__root__',
|
'name' => '__root__',
|
||||||
),
|
),
|
||||||
'versions' =>
|
'versions' =>
|
||||||
@ -18,7 +18,7 @@
|
|||||||
'aliases' =>
|
'aliases' =>
|
||||||
array (
|
array (
|
||||||
),
|
),
|
||||||
'reference' => '1e17252358281423e1fcad5533830c0f40cd7758',
|
'reference' => '4b5a19179745291bd3db18b1fc4fbbe52a772976',
|
||||||
),
|
),
|
||||||
'phpmailer/phpmailer' =>
|
'phpmailer/phpmailer' =>
|
||||||
array (
|
array (
|
||||||
|
Loading…
Reference in New Issue
Block a user