2017-01-09 14 views
0

パスワードをリセットするためのメールアドレスへのリンクを送信したいと考えています。しかし、それは「AbstractSmtpTransport.phpライン383にSwift_TransportExceptionを: 期待応答コード250が、コードを持って 『見せている』メッセージで、 『530 530 5.7.1認証がLaravel:パスワードをリセットするために必要な変更

私.envこの

MAIL_DRIVER=smtp 
MAIL_HOST=asmtp.unoeuro.com 
MAIL_PORT=587 
[email protected] 
MAIL_PASSWORD=******** 
MAIL_ENCRYPTION=tls 
のようなものである』必要

この

<form class="form-horizontal" role="form" method="POST" action="{{ password/reset/, [$token] }}"> 
        {{ csrf_field() }} 

        <!-- <input type="hidden" name="token" value="{{ $token }}"> --> 

        <div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}"> 
         <label for="email" class="col-md-4 control-label">E-Mail Address</label> 

         <div class="col-md-6"> 
          <input id="email" type="email" class="form-control" name="email" value="{{ $email or old('email') }}" required autofocus> 

          @if ($errors->has('email')) 
           <span class="help-block"> 
            <strong>{{ $errors->first('email') }}</strong> 
           </span> 
          @endif 
         </div> 
        </div> 

        <div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}"> 
         <label for="password" class="col-md-4 control-label">Password</label> 

         <div class="col-md-6"> 
          <input id="password" type="password" class="form-control" name="password" required> 

          @if ($errors->has('password')) 
           <span class="help-block"> 
            <strong>{{ $errors->first('password') }}</strong> 
           </span> 
          @endif 
         </div> 
        </div> 

        <div class="form-group{{ $errors->has('password_confirmation') ? ' has-error' : '' }}"> 
         <label for="password-confirm" class="col-md-4 control-label">Confirm Password</label> 
         <div class="col-md-6"> 
          <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required> 

          @if ($errors->has('password_confirmation')) 
           <span class="help-block"> 
            <strong>{{ $errors->first('password_confirmation') }}</strong> 
           </span> 
          @endif 
         </div> 
        </div> 

        <div class="form-group"> 
         <div class="col-md-6 col-md-offset-4"> 
          <button type="submit" class="btn btn-primary"> 
           Reset Password 
          </button> 
         </div> 
        </div> 
       </form> 

私mail.phpこの

のようなものであるように私のreset.blade.phpがあります

メールを送信してパスワードをリセットするために必要な変更はありますか?

答えて

1

MAIL_USERNAMEMAIL_PASSWORDを正しく入力する必要があると思います。

詳細は、指定のリンク(Trying to get Laravel 5 email to work)を参照してください。

あなたのためにこの作品が欲しいです!

UPDATE
してください、あなたはキャッシュをクリアすることができたら:

php artisan cache:clear 
php artisan config:cache 
php artisan cache:clear 
+0

私はそれを見ましたが、まだ解決策を見つけることができませんでした。 – incorporeal

+0

提案された変更が適用された後にクリアキャッシュを実行していただきたいと思います。そうでない場合は、* UPDATE *を参照してください。 –

+0

thnxそれは働いた。私はキャッシュをクリアしましたが、config:cacheをやっていませんでした。今はうまくいきます.thnx – incorporeal

0

AddWebソリューション株式会社Pvtが、それは明らかに、本質的に、あなたのメールを意味し、 "必要な530 5.7.1認証" を言い、言ったと同じように資格情報が正しくありません。また、メールプロバイダが使用する暗号化の種類とポートを探してみてください。

関連する問題