Ben e-pasta gönderme ile ilgili bir sorun var. Benim yöntem bu gibi görünüyor:
$this->Email->smtpOptions = array(
'port'=>'465',
'timeout'=>'30',
'auth' => true,
'host' => 'ssl://smtp.gmail.com',
'username'=>'mymail@gmail.com',
'password'=>'mypass',
);
$this->Email->from = "admin@localhost";
$this->Email->to = "my_test_mail@centrum.cz";
$this->Email->subject = "Test";
$this->Email->sendAs = "text";
$this->Email->delivery = 'smtp';
$this->Email->send('Hello message body!');
Ben e-posta göndermek çalıştığınızda ama olsun:
555 5.5.2 Syntax error. l3sm512374fan.0
Bu iş için ne sırayla chnage gerekiyor?
Teşekkürler