Embeddable magic links
A "magic link" is a link, that when pressed, will automatically authenticate your user, so that they can quickly perform some action on your site with less friction than if they had to sign in manually.
Common use cases include:
- Welcome emails, when users are added off a waitlist
- Promotional emails for users
- Recovering abandoned carts
- Surveys or questionnaires
Creating magic links
Embeddable magic links leverage sign-in tokens which can be created from your backend.
This will return a token, which can then be embedded as a query param in any link, something like:
https://your-site.com/welcome?token=THE_TOKEN
Once you have the link, this can be embedded anywhere, such as an email.
Accepting magic links
Now that you have a way to process a token, you'll need to setup a page on your frontend to get the token from the query string, call the sign in function, then perform whatever action you originally had in mind.
Signing a user in with a token is very similar to all of our other custom flows.
Feedback
Last updated on