Is it possible to send mails in Cake php using zoho as SMTP address
Hi,
We are trying to send email from cakephp application using zoho as SMTP provider but unable to send mails using the same - mails are simply failing without any much errors.
Can you help us with the same.
Using Gmail as SMTP provider I can send mails without any errors - so there is no issue with my email template
Our domain we hosted with zoho is rainyday.org(free ware)
public $smtp = array(
'transport' => 'Smtp',
'from' => array(' ABC' => 'RainyDay'),
'host' => 'ssl://'smtp.zoho.com',
'port' => 465, - this will be changed to 587 when we trying to use TLS authentication
'timeout' => 15,
'username' => 'xyz@domain.com',
'password' => 'email password',
'client' => null,
'log' => false,
'tls' => true - here we are using port number as 587
//'charset' => 'utf-8',
//'headerCharset' => 'utf-8',
);
Thanks and regards,
Chandru