What's new
Guest viewing is limited

Setup phpList To Send With SMTP

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Guest
Open config/config.php

Edit the code below:

# To use a SMTP server please give your server hostname here, leave it blank to use the standard

# PHP mail() command.

define("PHPMAILERHOST",'');

# in the above you can specify multiple SMTP servers like this:

# 'server1:port1;server2:port2;server3:port3' eg

define('PHPMAILERHOST','smtp.thexyzserver.com:25');

# if you want to use smtp authentication when sending the email uncomment the following

# two lines and set the username and password to be the correct ones

$phpmailer_smtpuser = 'email@email.com';

$phpmailer_smtppassword = '***************';

## you can set this to send out via a different SMTP port

# define('PHPMAILERPORT',25);

## test vs blast

# you can send test messages via a different SMTP host than the actual campaign queue

# if not set, these default to the above PHPMAILERHOST and PHPMAILERPORT

define('PHPMAILERTESTHOST','smtp.thexyzserver.com');

define('PHPMAILERBLASTHOST','smtp.thexyzserver.com');

define('PHPMAILERBLASTPORT',25);

 
Last edited:
Back
Top