Guest User

Untitled

a guest
Oct 30th, 2018
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. # If you want to use the PHPMailer class from phpmailer.sourceforge.net, set the following
  2. # to 1. If you tend to send out html emails, it is recommended to do so.
  3. define("PHPMAILER",1);
  4.  
  5. # To use a SMTP please give your server hostname here, leave it blank to use the standard
  6. # PHP mail() command.
  7. define("PHPMAILERHOST",'');
  8.  
  9. # if you want to use smtp authentication when sending the email uncomment the following
  10. # two lines and set the username and password to be the correct ones
  11. #$phpmailer_smtpuser = 'smtpuser';
  12. #$phpmailer_smtppassword = 'smtppassword';
  13.  
  14. # in the above you can specify multiple SMTP servers like this:
  15. # 'server1:port1;server2:port2;server3:port3' eg
  16. #define('PHPMAILERHOST','smtp1.mydomain.com:25;smtp2.mydomain.com:2500;smtp3.phplist.com:5123');
  17.  
  18. # if you want to use smtp authentication when sending the email uncomment the following
  19. # two lines and set the username and password to be the correct ones
  20. #$phpmailer_smtpuser = 'smtpuser';
  21. #$phpmailer_smtppassword = 'smtppassword';
  22.  
  23. ## you can set this to send out via a different SMTP port
  24. # define('PHPMAILERPORT',25);
Add Comment
Please, Sign In to add comment