chiro-canto/public/contact/sendmail.php

89 lines
3.2 KiB
PHP
Raw Normal View History

2021-03-31 16:24:01 +02:00
<?php
// ini_set('display_errors', 1);
// ini_set('display_startup_errors', 1);
// error_reporting(E_ALL);
//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;
2021-04-16 15:15:57 +02:00
require './config.php';
2021-03-31 16:24:01 +02:00
//Load Composer's autoloader
require '../vendor/autoload.php';
//Instantiation and passing `true` enables exceptions
$mail = new PHPMailer(true);
$error_msg = "";
if (isset($_POST)) {
if (isset($_POST['firstname'])) {
$fname = $_POST['firstname'];
} else {
2021-04-20 17:05:13 +02:00
$error_msg .= _('You have not entered a proper first name.').'\n';
2021-03-31 16:24:01 +02:00
}
if (isset($_POST['lastname'])) {
$lname = $_POST['lastname'];
} else {
2021-04-20 17:05:13 +02:00
$error_msg .= _('You have not entered a proper last name.').'\n';
2021-03-31 16:24:01 +02:00
}
if (isset($_POST['email'])) {
$email = $_POST['email'];
} else {
2021-04-20 17:05:13 +02:00
$error_msg .= _('You have not entered a proper email address.').'\n';
2021-03-31 16:24:01 +02:00
}
if (isset($_POST['subject'])) {
$subject = $_POST['subject'];
} else {
2021-04-20 17:05:13 +02:00
$error_msg .= _('You have not entered a proper subject.').'\n';
2021-03-31 16:24:01 +02:00
}
if (isset($_POST['message'])) {
$message = $_POST['message'];
} else {
2021-04-20 17:05:13 +02:00
$error_msg .= _('You have not entered a proper message.').'\n';
2021-03-31 16:24:01 +02:00
}
}
echo $error_msg;
try {
//Server settings
// $mail->SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output
2021-03-31 16:24:01 +02:00
$mail->isSMTP(); //Send using SMTP
2021-04-09 14:29:00 +02:00
$mail->Timeout = 60;
2021-03-31 16:24:01 +02:00
$mail->SMTPKeepAlive = true;
2021-04-16 15:15:57 +02:00
$mail->Host = $smtp_host; //Set the SMTP server to send through
2021-04-09 14:29:00 +02:00
$mail->SMTPAuth = true; //Enable SMTP authentication
2021-04-16 15:15:57 +02:00
$mail->Username = $smtp_email; //SMTP username
$mail->Password = $smtp_password; //SMTP password
2021-03-31 16:24:01 +02:00
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; //Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged
2021-04-09 14:29:00 +02:00
$mail->Port = 587; //TCP port to connect to, use 465 for `PHPMailer::ENCRYPTION_SMTPS` above
2021-03-31 16:24:01 +02:00
$mail->CharSet = "UTF-8";
$mail->Encoding = 'base64';
//Recipients
$mail->addReplyTo($email, 'Message Sender');
2021-04-16 15:15:57 +02:00
$mail->addAddress($admin_email, $admin_username); //Add a recipient
2021-03-31 16:24:01 +02:00
$mail->setFrom($email, 'Mailer');
// $mail->addAddress('ellen@example.com'); //Name is optional
// $mail->addCC('cc@example.com');
// $mail->addBCC('bcc@example.com');
//Attachments
//$mail->addAttachment('/var/tmp/file.tar.gz'); //Add attachments
//$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); //Optional name
//Content
//$mail->isHTML(true); //Set email format to HTML
$mail->Subject = $subject;
2021-04-09 14:29:00 +02:00
$mail->Body = $message;
$mail->Body .= "\nSended by $fname $lname <$email>\n";
2021-03-31 16:24:01 +02:00
// $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
$mail->send();
$mail->smtpClose();
2021-04-20 17:05:13 +02:00
echo _('Message has been sent');
2021-03-31 16:24:01 +02:00
} catch (Exception $e) {
2021-04-20 17:05:13 +02:00
echo _('Message could not be sent. Mailer Error: ') + $mail->ErrorInfo;
2021-03-31 16:24:01 +02:00
}