Guest User

Untitled

a guest
Aug 1st, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $mail->SMTPDebug = 0;
  2. $mail->isSMTP();
  3. $mail->Host = Config::MAIL_HOST;
  4. $mail->SMTPAuth = true;
  5. $mail->Username = Config::MAIL_USERNAME;
  6. $mail->Password = Config::MAIL_PASSWORD;
  7. $mail->SMTPSecure = 'tls';
  8. $mail->Port = Config::MAIL_PORT;
  9. $mail->CharSet = 'UTF-8';
  10.  
  11. $mail->SMTPSecure = false;
  12. $mail->SMTPAutoTLS = false;
Add Comment
Please, Sign In to add comment