I am looking into cakephp email component first time. I am sending email like this from my localhost:
$this->Email->smtpOptions = array( 'port'=>'465',
'timeout'=>'30',
'host'=>'smtp.gmail.com',
'username'=>'mygmail@gmail.com',
'password'=>'mygmailpassword'
);
$this->Email->delivery = 'smtp';
$this->Email->from = "mygmail@gmail.com";
$this->Email->to = "yourgmail@gmail.com";
$this->Email->subject = "Subject";
$this->Email->sendAs = 'html';
$this->Email->lineLength = 255;
$body = "<h1>This is body</h1>";
$this->Email->send( $body );
It is not sending any email or not even showing any error.
Is there something missing ?
Thanks