I had followed the instructions given there. These are the properties i am setting in godaddy and i am getting a connection refused error. Any idea what could be wrong?
$phpmailer->IsSMTP();
$phpmailer->Host='smtp.zoho.com';
$phpmailer->Port = 465; // could be different
$phpmailer->Username = 'admin@reconsumernetwork.com'; // if required
$phpmailer->Password = 'xxxxxx'; // if required
$phpmailer->SMTPAuth = true; // if required
The error is
2015-11-17 17:37:22
Connection: opening to ssl://smtp.zoho.com:465, timeout=300, options=array (
'ssl' =>
array (
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true,
),
)
2015-11-17 17:37:23
SMTP ERROR: Failed to connect to server: Connection refused (111)
Thanks
Parag