Add auth email templates and update config
Expanded the Supabase configuration file to include new auth email templates and created corresponding HTML templates. These templates facilitate authentication emails such as invitations, confirmations, password resets, and magic link logins.
This commit is contained in:
@@ -69,4 +69,24 @@ secret = ""
|
||||
redirect_uri = ""
|
||||
# Overrides the default auth provider URL. Used to support self-hosted gitlab, single-tenant Azure,
|
||||
# or any other third-party OIDC providers.
|
||||
url = ""
|
||||
url = ""
|
||||
|
||||
[auth.email.template.invite]
|
||||
subject = "You are invited to Makerkit"
|
||||
content_path = "./supabase/templates/invite-user.html"
|
||||
|
||||
[auth.email.template.confirmation]
|
||||
subject = "Confirm your email"
|
||||
content_path = "./supabase/templates/confirm-email.html"
|
||||
|
||||
[auth.email.template.recovery]
|
||||
subject = "Reset your password"
|
||||
content_path = "./supabase/templates/reset-password.html"
|
||||
|
||||
[auth.email.template.email_change]
|
||||
subject = "Confirm your email change"
|
||||
content_path = "./supabase/templates/change-email-address.html"
|
||||
|
||||
[auth.email.template.magic_link]
|
||||
subject = "Sign in to Makerkit"
|
||||
content_path = "./supabase/templates/magic-link.html"
|
||||
1
apps/web/supabase/templates/change-email-address.html
Normal file
1
apps/web/supabase/templates/change-email-address.html
Normal file
File diff suppressed because one or more lines are too long
1
apps/web/supabase/templates/confirm-email.html
Normal file
1
apps/web/supabase/templates/confirm-email.html
Normal file
File diff suppressed because one or more lines are too long
1
apps/web/supabase/templates/invite-user.html
Normal file
1
apps/web/supabase/templates/invite-user.html
Normal file
File diff suppressed because one or more lines are too long
1
apps/web/supabase/templates/magic-link.html
Normal file
1
apps/web/supabase/templates/magic-link.html
Normal file
File diff suppressed because one or more lines are too long
1
apps/web/supabase/templates/reset-password.html
Normal file
1
apps/web/supabase/templates/reset-password.html
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user