http://blog.tomoeishikawa.com/archives/156/comment-page-1#comment-26
$this->view = "View"; // Qdmail及びDebugKitと併用する際のエラーを防止
//リセット
$this->Qdmail->reset();
$this->Qdmail->to( $email , $name );
$this->Qdmail->subject('件名');
$this->Qdmail->from(ADMIN_MAIL, '名前' );
$this->Qdmail->cakeText('形式', 'ビュー', 'レイアウト');
//送信
$this->Qdmail->send();
これでOK。
$this->view = "View"; // Qdmail及びDebugKitと併用する際のエラーを防止
が大切なのです。
cakephpで携帯サイトを使うとき、はまるので気をつけたい。



