繁体   English   中英

发送email验证码到laravel中的另一个base_url

[英]Send email verification code to another base_url in laravel

我有两个 laravel 系统并且都连接到一个主数据库

1.customer portal-customer.test
2.admin portal - admin.test

不允许客户访问管理门户

但管理员可以从管理仪表板创建客户。

在验证 email 之前,客户无法登录其个人资料。

目前,如果用户直接通过客户门户创建帐户,用户会收到验证 email,如果他/她在 60 分钟内点击链接,则帐户会得到验证并激活。

验证链接如下所示:

http://customer.test/email/verify/13/976bdd188ad675ad87c827ca9723fb4a7bda2178?expires=1588242534&signature=cc628ef025eb7cd03fe76093be1e9e3fdfce12f5208c185560d1996b9f662744 

但是现在当管理员通过管理面板(admin.test)为客户创建用户帐户时,需要进行相同的过程。

以下是我的用户在 controller 中创建 function

public function store(Request $request)
    {
        request()->validate([
            'name' => ['required', 'alpha','min:2', 'max:255'],
            'last_name' => ['required', 'alpha','min:2', 'max:255'],
            'email' => ['required','email', 'max:255', 'unique:users'],
            'password' => ['required', 'string', 'min:12', 'confirmed','regex:/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{12,}$/'],
            'mobile'=>['required', 'regex:/^\+[0-9]?()[0-9](\s|\S)(\d[0-9]{8})$/','numeric','min:9'],
            'username'=>['required', 'string', 'min:4', 'max:10', 'unique:users'],   
            'roles'=>['required'],
            'user_roles'=>['required'],
        ]);

        //Customer::create($request->all());

        $input = $request->all();
        $input['password'] = Hash::make($input['password']);

        $user = User::create($input);
        $user->assignRole($request->input('roles'));

        event(new Registered($user));
        //$user->notify(new SendRegisterMailNotification());

        return redirect()->route('customers.index')
                        ->with('success','Customer created successfully. Verification email has been sent to user email.  ');
    }

这里也是用户创建成功,email 也发送到用户的 email 但问题是验证链接的基础 url....点击该链接,它会将客户带到一个链接,例如,

http://admin.test/email/verify/22/3b7c357f630a62cb2bac0e18a47610c245962182?expires=1588247915&signature=7e6869deb1b6b700dcd2a49b2ec66ae32fb0b6dc99aa0405095e9844962bb53c

由于客户不允许管理面板用户收到 403 禁止消息..

那么我该如何更改这个 Base url ???

event(new Registered($user));

处理 email 在创建用户时发送一次。

在您的SendRegisterMailNotification ,您需要正确添加所需的基础 URL。 它可以是你想要的任何东西,或者你可以将它作为app.customer_base_url添加到你的应用程序配置和环境中,然后在你的通知中引用它。

<?php

namespace App\Notifications;

use Illuminate\Notifications\Notification;

class SendRegisterMailNotification extends Notification
{
    ...
    public function toMail($notifiable) {
        return (new MailMessage)
            ->line('Click here to verify')
            ->action('Verify', 'http://customer.test/' . $this->url);
            //$this->url gotten however you usually get the verification url.
    }
}

在您的EventServiceProvider中,您需要为Registered创建自定义侦听器

    protected $listen = [
        Registered::class => [
            CustomSendEmailVerificationNotification::class,
        ],
    ];

您将在哪里处理设置基础 url 的逻辑

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM