web-dev-qa-db-ja.com

Laravelデフォルトのメールが機能しない

登録時にユーザーアクティベーションメールを送信しようとしています。登録と認証のあるシンプルなlaravelサイトがあります。登録時にエラーはなく、データは正しく保存されますが、メールは実際には送信されません。私は同じ問題を抱えています。

これは私のmail.php設定ファイルです-

<?php

return array(

    /*
    |--------------------------------------------------------------------------
    | Mail Driver
    |--------------------------------------------------------------------------
    |
    | Laravel supports both SMTP and PHP's "mail" function as drivers for the
    | sending of e-mail. You may specify which one you're using throughout
    | your application here. By default, Laravel is setup for SMTP mail.
    |
    | Supported: "smtp", "mail", "sendmail"
    |
    */

    'driver' => 'smtp',

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Address
    |--------------------------------------------------------------------------
    |
    | Here you may provide the Host address of the SMTP server used by your
    | applications. A default option is provided that is compatible with
    | the Postmark mail service, which will provide reliable delivery.
    |
    */

    'Host' => 'smtp.mailgun.org',

    /*
    |--------------------------------------------------------------------------
    | SMTP Host Port
    |--------------------------------------------------------------------------
    |
    | This is the SMTP port used by your application to delivery e-mails to
    | users of your application. Like the Host we have set this value to
    | stay compatible with the Postmark e-mail application by default.
    |
    */

    'port' => 587,

    /*
    |--------------------------------------------------------------------------
    | Global "From" Address
    |--------------------------------------------------------------------------
    |
    | You may wish for all e-mails sent by your application to be sent from
    | the same address. Here, you may specify a name and address that is
    | used globally for all e-mails that are sent by your application.
    |
    */

    'from' => array('address' => '[email protected]', 'name' => 'God'),

    /*
    |--------------------------------------------------------------------------
    | E-Mail Encryption Protocol
    |--------------------------------------------------------------------------
    |
    | Here you may specify the encryption protocol that should be used when
    | the application send e-mail messages. A sensible default using the
    | transport layer security protocol should provide great security.
    |
    */

    'encryption' => 'tls',

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Username
    |--------------------------------------------------------------------------
    |
    | If your SMTP server requires a username for authentication, you should
    | set it here. This will get used to authenticate with your server on
    | connection. You may also set the "password" value below this one.
    |
    */

    'username' => null,

    /*
    |--------------------------------------------------------------------------
    | SMTP Server Password
    |--------------------------------------------------------------------------
    |
    | Here you may set the password required by your SMTP server to send out
    | messages from your application. This will be given to the server on
    | connection so that the application will be able to send messages.
    |
    */

    'password' => null,

    /*
    |--------------------------------------------------------------------------
    | Sendmail System Path
    |--------------------------------------------------------------------------
    |
    | When using the "sendmail" driver to send e-mails, we will need to know
    | the path to where Sendmail lives on this server. A default path has
    | been provided here, which will work well on most of your systems.
    |
    */

    'sendmail' => '/usr/sbin/sendmail -bs',

    /*
    |--------------------------------------------------------------------------
    | Mail "Pretend"
    |--------------------------------------------------------------------------
    |
    | When this option is enabled, e-mail will not actually be sent over the
    | web and will instead be written to your application's logs files so
    | you may inspect the message. This is great for local development.
    |
    */

    'pretend' => false,

);

そして、これはメーラーを処理するためのロジックです-(これはUsersControllerにあります)

public function postCreate()
    {
            $validator = Validator::make(Input::all(), User::$rules);

        if ($validator->passes()) 
        {
            $act_code = str_random(60);
            $user = new User;
            $user->user_username = Input::get('user_username');
            $user->user_email = Input::get('user_email');
            $user->user_password = Hash::make(Input::get('user_password'));
            $user->user_status = "N";
            $user->user_activation_key = $act_code;
            if($user->save())
            {

              $email_data = array(
             'recipient' => $user->user_email,
             'subject' => 'Activation Email'
              );
                $view_data = array(
                'actkey' => $act_code,
            );

              Mail::send('emails.welcome', $view_data, function($message) use ($email_data) {
                  $message->to( $email_data['recipient'] )
                          ->subject( $email_data['subject'] );
              });


            return Redirect::to('login')->with('message', 'Thanks for registering!');
            }
        } 
        else 
        {
            return Redirect::to('register')->with('message', 'The following errors occurred')->withErrors($validator)->withInput();
        }
    }
26

さて、Yousefに `` Up One ''を提供しますが、私の評判は十分ではありません(壊れているようです)。 ISPのsmtpサーバーへの接続に関してまったく同じ問題がありました。 laravelを使用して最終的にメールを取得できる唯一の方法は、「暗号化」値を何も設定しないことです(つまり、上記の投稿のように)。ポート変更、アカウントの他のすべての組み合わせ-changeなどにより、laravel=例外が発生しました。Gmailアカウントと資格情報を使用してみましたが、うまくいきませんでした。

最終的に機能した設定の唯一の組み合わせは、使用することでした

'Host' => 'smtp.your-domain',
'port' => 587, 
'encryption' => '',
'username' => 'Your-account@Your-domain',
'password' => 'your-password for Your-account',...
38
mdg

上記の回答が私には役に立たなかったので、それらを拡大します。

定義するポートは、適切なタイプの暗号化と相関する必要があります。結局のところ、sslとtlsは同等ではなく、異なるポートに相関しています。
デフォルトの暗号化設定laravelはtls(ポート587)に設定されていますが、ポート465を使用している場合は、sslに変更する必要があります。

Googleのsmtp.gmail.comサーバーは、この好例です。

'Host' => 'smtp.gmail.com',
'port' => 465, 
'encryption' => 'ssl',

OR

'Host' => 'smtp.gmail.com',
'port' => 587, 
'encryption' => 'tls',

さらに、ポート587は暗号化の使用を義務付けていません( 詳細はこちら )。その設定が見つかったら'encryption' => ''は動作します。使用しているsmtpサーバーがメールを暗号化していないことを意味する可能性があるため、赤いフラグを立てる必要があります。
この場合、メールを送信する代替手段を見つける必要があります。

14
LifeQuery

に設定してTLS暗号化を削除してみてください

'encryption' => '',

私は同様の問題を抱えていました、そしてTLはそれでした。

6
UX Labs

Xamppを使用してローカルマシンでこれを使用している場合。バックエンドで実行されているすべての暗号化アプリケーションを無効にしてください。同じ問題が発生していましたが、PGP暗号化ソフトウェアを無効にすると解決しました。暗号化ソフトウェアは、トークンを電子メールに渡すことを許可しません。

0
Kaushik Kumar

私はこの問題を抱えていましたが、設定メールを.envファイルに設定し、これを使用しました:

php artisan config:cache
0
grantDEV