I want to send mail by using zoho smtp server from my codeigniter application.
I have tried with below code but I got error.
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'smtp.zoho.eu';
$config['smtp_user'] = '[email protected]';
$config['smtp_pass'] = '12345678';
$config['smtp_port'] = 465;
$config['smtp_crypto'] = 'ssl';
$config['mailtype'] = 'html';
$this->email->initialize($config);
$this->email->from('[email protected]', 'Test');
$this->email->to('[email protected]');
$this->email->subject("Test");
$this->email->message("Test message");
if(!$this->email->send()){
$this->email->print_debugger();
}
I Got below error
I have hosted the files in google cloud connect. It's working fine in localhost
more on this here