初めてcakephpメールコンポーネントを調べています。ローカルホストから次のようなメールを送信しています:
$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 );
メールを送信していないか、エラーを表示していません。
何か足りないものはありますか?
ありがとう