Fixing Incorrect Magic Link Domain in FusionAuth Emails
-
I’m just starting to work with Magic Links in FusionAuth.
Our FusionAuth service is hosted at company.fusionauth.io, but the Magic Link being generated contains localhost:9011 as the domain.
Is there a configuration setting I’m missing?
-
This behavior is due to FusionAuth’s default settings for email templates. The Magic Link URL is template-driven, and by default, it may reference a local development environment unless explicitly configured.
How to Fix This:
-
Customize the Magic Link URL in Email Templates
- FusionAuth allows you to update the email template directly.
- You may want to use the FusionAuth CLI and version control to manage email templates.
- Refer to the note in this documentation for details:
Email Templates & Replacement Variables
-
Update the Tenant Configuration
- If you want to avoid changes to the email templates, you can put the link in the tenant object and have your template pull from there. To ensure Magic Links point to the correct domain (auth.example.com), update your tenant’s data object using the Tenant API:
Update a Tenant API - This API allows you to populate the tenant.data object.
- Then you can use it in your email templates.
- If you want to avoid changes to the email templates, you can put the link in the tenant object and have your template pull from there. To ensure Magic Links point to the correct domain (auth.example.com), update your tenant’s data object using the Tenant API:
Summary
- Magic Links use email templates, which may default to localhost:9011.
- Updating tenant settings allows you to set the correct domain dynamically.
- Use the Tenant API to configure the Magic Link domain properly.
-
-
-