微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在laravel默认身份验证中触发用户验证邮件或密码重置邮件时,将密件抄送添加到邮件中

如何解决在laravel默认身份验证中触发用户验证邮件或密码重置邮件时,将密件抄送添加到邮件中

我正在尝试在laravel认身份验证系统中将bbc添加到验证和密码剩余链接邮件中。 laravel认身份验证系统中没有邮件功能,如何在验证邮件和密码重置邮件添加-> bcc()。

将寻求任何帮助。

像这样

Mail::to($request->user())
->cc($moreUsers)
->bcc('admin@example.com')
->send(new OrderShipped($order));

forgotpasswordcontroller.PHP

<?PHP

namespace App\Http\Controllers\Auth;

use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Password;
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
use Auth;

class ForgotPasswordController extends Controller
{          
    use SendsPasswordResetEmails;
  
    public function __construct()
    {
        $this->middleware('guest');
    }

    public function sendResetLinkEmail(Request $request)
    {
         $this->validateEmail($request);
         
         $response = $this->broker()->sendResetLink(
             $request->only('email')
         );
         
         return $response == Password::RESET_LINK_SENT
                     ? $this->sendResetLinkResponse($request,$response)
                     : $this->sendResetLinkFailedResponse($request,$response);
    }
}

verificationcontroller.PHP

<?PHP

namespace App\Http\Controllers\Auth;

use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Illuminate\Foundation\Auth\VerifiesEmails;

class VerificationController extends Controller
{       
    use VerifiesEmails;
        
    protected $redirectTo = 'shop/home';
       
    public function __construct()
    {
        $this->middleware('auth')->only('verify');
        $this->middleware('signed')->only('verify');
        $this->middleware('throttle:6,1')->only('verify','resend');
    }
}

解决方法

php artisan make:notification ResetPassword

然后将该代码添加到ResetPassword

<?php

namespace App\Notifications;

use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Facades\Lang;

class ResetPassword extends Notification
{
     /**
     * The password reset token.
     *
     * @var string
     */
    public $token;

    /**
     * The callback that should be used to build the mail message.
     *
     * @var \Closure|null
     */
    public static $toMailCallback;

    /**
     * Create a notification instance.
     *
     * @param  string  $token
     * @return void
     */
    public function __construct($token)
    {
        $this->token = $token;
    }

    /**
     * Get the notification's channels.
     *
     * @param  mixed  $notifiable
     * @return array|string
     */
    public function via($notifiable)
    {
        return ['mail'];
    }

    /**
     * Build the mail representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return \Illuminate\Notifications\Messages\MailMessage
     */
    public function toMail($notifiable)
    {
        if (static::$toMailCallback) {
            return call_user_func(static::$toMailCallback,$notifiable,$this->token);
        }

        return (new MailMessage)        
            ->subject(Lang::get('Reset Password Notification'))
            ->bcc('info@example.com') //add bcc for another email
            ->line(Lang::get('You are receiving this email because we received a password reset request for your account.'))
            ->action(Lang::get('Reset Password'),url(route('password.reset',['token' => $this->token,'email' => $notifiable->getEmailForPasswordReset()],false)))
            ->line(Lang::get('This password reset link will expire in :count minutes.',['count' => config('auth.passwords.'.config('auth.defaults.passwords').'.expire')]))
            ->line(Lang::get('If you did not request a password reset,no further action is required.'));
    }

    /**
     * Set a callback that should be used when building the notification mail message.
     *
     * @param  \Closure  $callback
     * @return void
     */
    public static function toMailUsing($callback)
    {
        static::$toMailCallback = $callback;
    }
}

然后在用户类上覆盖方法

<?php

namespace App;

use App\Helper\Helper;
use App\Notifications\ResetPassword;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;

class User extends Authenticatable
{
    use Notifiable;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $table = 'users';
    protected $fillable = [
        'name','email','password',];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password','remember_token',];

    // Override sendPasswordResetNotification
    public function sendPasswordResetNotification($token)
    {
        $this->notify(new ResetPassword($token));
    }


}

并对验证执行相同的操作

覆盖电子邮件验证的方法

   public function sendEmailVerificationNotification()
    {
        $this->notify(new VerifyEmail);
    }
,

您还可以像这样监听邮件发送事件:

app / Providers / EventServiceProvider.php

 /**
 * The event listener mappings for the application.
 *
 * @var array
 */
protected $listen = [
     MessageSending::class => [
         LogOutboundMessages::class
     ]
];

然后,app / Listeners / LogOutboundMessages.php

class LogOutboundMessages
{
    /**
     * Create the event listener.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Handle the event.
     *
     * @param  object  $event
     * @return void
     */
    public function handle(MessageSending $event)
    {
        $event->message->addBcc('admin@example.com');
    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。