", $emailBody); $mail->isSMTP(); $mail->Host = getenv('ASTRO_SMTP_HOSTNAME'); $mail->SMTPAuth = true; $mail->Username = getenv('ASTRO_SMTP_USERNAME'); $mail->Password = getenv('ASTRO_SMTP_PASSWORD'); $mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; $mail->Port = 587; //Options $mail->CharSet = 'UTF-8'; $mail->WordWrap = 70; //Recipients $mail->setFrom($myEmail); $mail->addAddress($myEmail); $mail->addReplyTo($emailAddress, $name); // Content $mail->isHTML(true); $mail->Subject = $emailSubject; $mail->Body = $emailBodyHTML; $mail->AltBody = $emailBody; $mail->send(); // if subscribe add to mailing list if(!empty($subscribe)) { // process // enovoi mail add to mailing list } // redirect to the 'thank you' page header("Location: /thank-you/index.html"); } ?> Contact form handler