SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output $mail->isSMTP(); //Send using SMTP $mail->Timeout = 60; $mail->SMTPKeepAlive = true; $mail->Host = $smtp_host; //Set the SMTP server to send through $mail->SMTPAuth = true; //Enable SMTP authentication $mail->Username = $smtp_email; //SMTP username $mail->Password = $smtp_password; //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 $mail->CharSet = "UTF-8"; $mail->Encoding = 'base64'; //Recipients $mail->addReplyTo($email, 'Message Sender'); $mail->addAddress($admin_email, $admin_username); //Add a recipient $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; $mail->Body = $message; $mail->Body .= "\nSended by $fname $lname <$email>\n"; // $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; $mail->send(); $mail->smtpClose(); echo _('Message has been sent'); } catch (Exception $e) { echo _('Message could not be sent. Mailer Error: ') + $mail->ErrorInfo; }