I recently migrated servers.
I have a couple of installations of phpList that I use to send newsletters for various clients.
Before the move I was using a config that looks something like this and was working fine.
After the move when I try to send email it would fail to send the message.
There are no php errors, or errors in any logs that I can find.
As a workaround I changed the config to the following which forces the application to use PHP mail() to send and that works fine.
Any ideas what I can look at to enable sending via SMTP?
Thanks.
I have a couple of installations of phpList that I use to send newsletters for various clients.
Before the move I was using a config that looks something like this and was working fine.
Code:
define("PHPMAILERHOST",'vps.mydomain.com');
$phpmailer_smtpuser = '[email protected]';
$phpmailer_smtppassword = 'xxxxxxxxxx';
define('PHPMAILERPORT',465);
After the move when I try to send email it would fail to send the message.
There are no php errors, or errors in any logs that I can find.
As a workaround I changed the config to the following which forces the application to use PHP mail() to send and that works fine.
Code:
define("PHPMAILERHOST",'');
Any ideas what I can look at to enable sending via SMTP?
Thanks.