RocketTheme Joomla Templates
     

   phplist      powered by phplist
 

Configuration tested on:
phplist, version 2.10.14

Attention: make a backup copy before making
any changes on your phplist server

phpmailer changelog
 


Check PHPMailer version,
PHPMailer added TLS/SSL SMTP support (required by RealSender),
starting with: Version 2.0.0 rc1 (Thu, Nov 08 2007)

If your system is running an ealier version:
1. Download the latest version of PHPMailer
2. Overwrite the existing files in lists/admin/phpmailer/
 

phpmailer config.php
 


Add the following lines to the file lists/config/config.php
after $phpmailer_smtppassword:

$phpmailer_smtpsecure = 'tls';
$phpmailer_smtpport = 25; //25 or 587
 

phpmailer class.phpmailer.php
 

Change lists/admin/class.phplistmailer.php as follows:

         $this->SMTPAuth = true;
         //$this->Helo = getConfig("website");
         $this->Host = PHPMAILERHOST;

         $this->Username = $GLOBALS['phpmailer_smtpuser'];
         $this->Password = $GLOBALS['phpmailer_smtppassword'];
         $this->SMTPSecure = $GLOBALS['phpmailer_smtpsecure'];
         $this->Port = $GLOBALS['phpmailer_smtpport'];
 

Send a test message (phplist > send a message):

phpmailer send a campaign


The result should be:

phpmailer send a campaign success