1

私のGmailアカウントから同じGmailアカウントにメールを送信するには、以下のコードを確認してください. 実行すると、メールが送信されたと表示されます。しかし、受信トレイにそのようなものが見つかりません。誰が問題が何であるかを提案できますか?

$config = Array(
        'protocol' => 'smtp',
        'smtp_host' => 'ssl://smtp.googlemail.com',
        'smtp_port' => 465,
        'smtp_user' => 'koolpraju@gmail.com',
        'smtp_password' => '****',
        'mailtype' => 'html',
        'charset' => 'iso-8859-1'
    );

    $this->load->library('email', $config);


    $this->email->set_newline("\r\n");

    $this->email->from('koolpraju@gmail.com','Prajakta');
    $this->email->to('koolpraju@gmail.com');
    $this->email->subject('This is a test email');
    $this->email->message('It is working. Great!! yey');

    if($this->email->send())
    {
        echo 'Your email was sent successfully';

    }
    else
    {
        show_error($this->email->print_debugger());
    }

Mercury で Xampp を実行し、Mercury S SMTP サーバーのパラメーターを設定しました。メールが届かない理由が本当にわかりませんか?誰かがこの問題で私を助けることができますか?

4

1 に答える 1