検索条件
全13件
(1/13ページ)
var $conponentes = array( 'Qdsmtp' );とするだけ。
$this->Qdsmtp->mail(・・・・・);とするだけで、標準mail関数を使わない、SMTP送信ができます。
$param = array( 'host'=>'pop.example.com', 'port'=>'587', 'from'=>'address@example.com', 'user'=>'postmaster@example.com', 'pass' => 'password', 'protocol'=>'SMTP_AUTH', ); $this->Qdmail->to('to_address@example.com'); $this->Qdmail->subject('メールのテスト'); $this->Qdmail->from('from@example.com'); $this->Qdmail->smtp(true); $this->Qdmail->smtpServer($param); $this->Qdmail -> cakeHtml('本文'); $fg=$this->Qdmail->send();