Customizing auth email language by sending emails from my own backend
Is it possible to handle the sending of authentication emails (Confirm signup, Invite user, Magic Link, Change email, Reset password, Reauthentication) from my own backend instead of Supabase, so I can customize the email language based on the user's locale?
2 Replies
Use send email hook https://supabase.com/docs/guides/auth/auth-hooks/send-email-hook
thank you