SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output $mail->isSMTP(); //Send using SMTP $mail->Timeout = 60; $mail->SMTPKeepAlive = true; $mail->Host = 'smtp.gmail.com'; //Set the SMTP server to send through $mail->SMTPAuth = true; //Enable SMTP authentication $mail->Username = 'samulus.ortion@gmail.com'; //SMTP username $mail->Password = 'CEkvk6vjP28vhCy'; //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('samuel.ortion@orange.fr', 'Samuel ORTION'); //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->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}"; }