0

基本的なメールを送信するためのコードを取得しました。しかし、smtpの場合、これを完璧にすることはできませんでした:

        function send(){

            $this->Email->smtpOptions = array(
                'port'=>'465', 
                'timeout'=>'30',
                'host' => 'ssl://smtp.gmail.com',
                'username'=>'csorila@gmail.com',
                'password'=>'mypassword',
           );

        $this->Email->delivery='smtp';

            $this->Email->send = 'debug';

            $this->Email->to = 'csorila17@gmail.com'; 
        $this->Email->subject = 'hurrah'; 
//        $this->Email->replyTo = 'noreply@example.com'; 
        $this->Email->from = 'Charmaine Khay Sorila<noreply@example.com>'; 
        //$this->Email->send('Here is the body of the email Chams Email Test');
        //Set the body of the mail as we send it. 
        //Note: the text can be an array, each element will appear as a 
        //seperate line in the message body. 

        if ( $this->Email->send() ) { 
            $this->Session->setFlash('Simple email sent'); 
        } else { 
            $this->Session->setFlash('Simple email not sent'); 
            $this->set('smtp_errors', $this->Email->smtpError);
        } 
        }

    }

$this->Email->delivery='smtp'; なしでこれを機能させましたが、その行を追加すると、メールをまったく送信できません:(

4

1 に答える 1

0

実際にメールを送信するのではなく、機能をテストしたい場合は、次の配信オプションを使用できます。

Copy to Clipboard
$this->Email->delivery = 'debug';
于 2012-05-03T06:53:17.867 に答える