2017-10-05 7 views
0

を使ったスパムボックスに入ります。これが機能するためにCodeIgniterのは、電子メールを送信しているがこれは私のコードでのAmazon EC2に

+1

エラーがパスワードの認証に失敗しました。あなたが使用している正しいログイン資格情報 – BSB

+0

を使用していることを確認してください。... cpanelまたはwindows – Mahesh

+0

ログイン情報が正しいです。 @BSB –

答えて

0

まず、あなたがGoogleのSMTPサーバでエラーを持って、それが、その後

$config = array(
    'protocol' => 'smtp', 
    'smtp_host' => 'ssl://smtp.gmail.com', 
    'smtp_user' => '[email protected]', 
    'smtp_pass' => '******', 
    'smtp_port' => '465', 
    'mailtype' => 'html', 
    'smtp_timeout' => '4', 
    'newline' => "\r\n" 
); 
$this->email->initialize($config); 

$this->email->to('[email protected]'); 
$this->email->cc();//$this->input->post('cctxt') 
$this->email->from('[email protected]'); 
$this->email->subject('Test subject'); 
$this->email->message('Test message'); 
$this->email->send(); 
echo $this->email->print_debugger(); 

ように見える必要がありますあなたがないので、あなたは、Googleアカウントに安全性の低いアプリのためのアクセスを有効にする必要がありますOAUTHを使用します。

Enable access For less Secure Apps

グッドラック!

+0

のようなページ名になりますいいえ私はこの設定を使用しています。メール送信停止。私のサーバーはhttpsなので、smtpsを使う必要があります。今私の問題はスパムになる理由です –

関連する問題