Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /* Tells PHPMailer to use SMTP. */
  2. $mail->isSMTP();
  3.  
  4. /* SMTP server address. */
  5. $mail->Host = 'smtp.empire.com';
  6.  
  7. /* Use SMTP authentication. */
  8. $mail->SMTPAuth = TRUE;
  9.  
  10. /* Set the encryption system. */
  11. $mail->SMTPSecure = 'tls';
  12.  
  13. /* SMTP authentication username. */
  14. $mail->Username = 'smtp@empire.com';
  15.  
  16. /* SMTP authentication password. */
  17. $mail->Password = 'iamyourfather';
  18.  
  19. /* Set the SMTP port. */
  20. $mail->Port = 587;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement