Skip to content

Instantly share code, notes, and snippets.

@jonmbake
Last active January 27, 2018 23:58
Show Gist options
  • Save jonmbake/0e5b175a72ad9ba64167 to your computer and use it in GitHub Desktop.
Save jonmbake/0e5b175a72ad9ba64167 to your computer and use it in GitHub Desktop.
Example of sendmail.php w/o environment variables
<?php
/**
* Sets error header and json error message response.
*
* @param String $messsage error message of response
* @return void
*/
function errorResponse ($messsage) {
header('HTTP/1.1 500 Internal Server Error');
die(json_encode(array('message' => $messsage)));
}
/**
* Pulls posted values for all fields in $fields_req array.
* If a required field does not have a value, an error response is given.
*/
function constructMessageBody () {
$fields_req = array("name" => true, "email" => true, "message" => true);
$message_body = "";
foreach ($fields_req as $name => $required) {
$postedValue = $_POST[$name];
if ($required && empty($postedValue)) {
errorResponse("$name is empty.");
} else {
$message_body .= ucfirst($name) . ": " . $postedValue . "\n";
}
}
return $message_body;
}
header('Content-type: application/json');
//do Captcha check, make sure the submitter is not a robot:)...
$url = 'https://www.google.com/recaptcha/api/siteverify';
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => http_build_query(array('secret' => '28dskgjs82skdgjshsdf', 'response' => $_POST["g-recaptcha-response"]))
)
);
$context = stream_context_create($opts);
$result = json_decode(file_get_contents($url, false, $context, -1, 40000));
if (!$result->success) {
errorResponse('reCAPTCHA checked failed!');
}
//attempt to send email
$messageBody = constructMessageBody();
require './vender/php_mailer/PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->CharSet = 'UTF-8';
$mail->isSMTP();
$mail->Host = "smtp.gmail.com";
$mail->SMTPAuth = true;
$mail->Username = "me@gmail.com";
$mail->Password = "my!password";
$mail->SMTPSecure = 'tls';
$mail->Port = 587;
$mail->setFrom($_POST['email'], $_POST['name']);
$mail->addAddress("me@gmail.com");
$mail->Subject = $_POST['reason'];
$mail->Body = $messageBody;
//try to send the message
if($mail->send()) {
echo json_encode(array('message' => 'Your message was successfully submitted.'));
} else {
errorResponse('An expected error occured while attempting to send the email: ' . $mail->ErrorInfo);
}
?>
@cryoguy
Copy link

cryoguy commented Apr 19, 2017

did you anybody ever get this snippet work? After submitting, no error and nothing happens. ??

@SvenC56
Copy link

SvenC56 commented May 16, 2017

push - same problem

@marshalldjones
Copy link

I had this same problem, for me I had to change the port setting for the TLS authentication, After I set it to the right port my emails sent.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment