laravel / fortify

Backend controllers and scaffolding for Laravel authentication.

Home Page:https://laravel.com/docs/fortify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Temporarily edit generated email verification URL for a user flow journey

sts-ryan-holton opened this issue · comments

Hi, I have a sign-up journey in my project that needs to create a email verification link journey that redirects the user to a different url than the one defined in my config by default.

I'm using Laravel 10 and the newest Fortify version, my Laravel project is an API, so no views here, my front-end is an SPA.

Here's my home path (presumably used for redirections)

/*
|--------------------------------------------------------------------------
| Home Path
|--------------------------------------------------------------------------
|
| Here you may configure the path where users will get redirected during
| authentication or password reset when the operations are successful
| and the user is authenticated. You are free to change this value.
|
*/

'home' => env('SPA_URL', 'https://example.com/account/domains/'),

It's then set in my .env

SPA_URL=http://localhost:3000/account/domains/

What I'd like to do, is when my user is created, I'm passing a boolean switch before user creation called is_onboarding_journey. How can I generate the email verification email that's sent that contains a redirection to a different page?

Hi there,

Thanks for reporting but it looks like this is a question which can be asked on a support channel. Please only use this issue tracker for reporting bugs with the library itself. If you have a question on how to use functionality provided by this repo you can try one of the following channels:

However, this issue will not be locked and everyone is still free to discuss solutions to your problem!

Thanks.