Laravel:What 重置密码所需的更改
Laravel:What changes needed to reset the password
我想发送 link 到一个邮件地址以重置密码。但它在 AbstractSmtpTransport.php 行 383 中显示“Swift_TransportException:
预期响应代码 250 但得到代码“530”,消息“530 5.7.1 需要身份验证”
我的.env是这样的
MAIL_DRIVER=smtp
MAIL_HOST=asmtp.unoeuro.com
MAIL_PORT=587
MAIL_USERNAME=hello@google.com
MAIL_PASSWORD=********
MAIL_ENCRYPTION=tls
我的reset.blade.php是这样的
<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是这样的
<?php
return [
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'asmtp.unoeuro.com'),
'port' => env('MAIL_PORT', 587),
'from' => [
'address' => 'hello@example.com',
'name' => 'Example',
],
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'sendmail' => '/usr/sbin/sendmail -bs',
];
我需要做哪些更改才能发送邮件和重设密码?
我认为你需要做出正确的 MAIL_USERNAME
和 MAIL_PASSWORD
。
您可以按照 given link() 了解更多详情。
希望这对你有用!
更新
请在清除缓存后:
php artisan cache:clear
php artisan config:cache
php artisan cache:clear
正如 AddWeb Solution Pvt Ltd 所说,它清楚地表明“需要 530 5.7.1 身份验证”,这实际上意味着您的邮件凭据不正确。此外,请尝试查找您的邮件提供商使用的加密类型和端口。
我想发送 link 到一个邮件地址以重置密码。但它在 AbstractSmtpTransport.php 行 383 中显示“Swift_TransportException: 预期响应代码 250 但得到代码“530”,消息“530 5.7.1 需要身份验证”
我的.env是这样的
MAIL_DRIVER=smtp
MAIL_HOST=asmtp.unoeuro.com
MAIL_PORT=587
MAIL_USERNAME=hello@google.com
MAIL_PASSWORD=********
MAIL_ENCRYPTION=tls
我的reset.blade.php是这样的
<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是这样的
<?php
return [
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'asmtp.unoeuro.com'),
'port' => env('MAIL_PORT', 587),
'from' => [
'address' => 'hello@example.com',
'name' => 'Example',
],
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'sendmail' => '/usr/sbin/sendmail -bs',
];
我需要做哪些更改才能发送邮件和重设密码?
我认为你需要做出正确的 MAIL_USERNAME
和 MAIL_PASSWORD
。
您可以按照 given link(
希望这对你有用!
更新
请在清除缓存后:
php artisan cache:clear
php artisan config:cache
php artisan cache:clear
正如 AddWeb Solution Pvt Ltd 所说,它清楚地表明“需要 530 5.7.1 身份验证”,这实际上意味着您的邮件凭据不正确。此外,请尝试查找您的邮件提供商使用的加密类型和端口。