diff --git a/apps/web/supabase/config.toml b/apps/web/supabase/config.toml
index 9678cab2d..4c75726ea 100644
--- a/apps/web/supabase/config.toml
+++ b/apps/web/supabase/config.toml
@@ -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 = ""
\ No newline at end of file
+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"
\ No newline at end of file
diff --git a/apps/web/supabase/templates/change-email-address.html b/apps/web/supabase/templates/change-email-address.html
new file mode 100644
index 000000000..08b2e22eb
--- /dev/null
+++ b/apps/web/supabase/templates/change-email-address.html
@@ -0,0 +1 @@
+
Confirm Change of Email | Makerkit
Confirm Change of EmailFollow this link to confirm the update of your email from {{ .Email }} to {{ .NewEmail }} or copy and paste this URL into your browser: {{ .ConfirmationURL }}
Makerkit |
\ No newline at end of file
diff --git a/apps/web/supabase/templates/confirm-email.html b/apps/web/supabase/templates/confirm-email.html
new file mode 100644
index 000000000..8d4304ccf
--- /dev/null
+++ b/apps/web/supabase/templates/confirm-email.html
@@ -0,0 +1 @@
+Confirm your email - Makerkit
\ No newline at end of file
diff --git a/apps/web/supabase/templates/invite-user.html b/apps/web/supabase/templates/invite-user.html
new file mode 100644
index 000000000..ade54036b
--- /dev/null
+++ b/apps/web/supabase/templates/invite-user.html
@@ -0,0 +1 @@
+You have bee invited to join - Makerkit
\ No newline at end of file
diff --git a/apps/web/supabase/templates/magic-link.html b/apps/web/supabase/templates/magic-link.html
new file mode 100644
index 000000000..111e307a3
--- /dev/null
+++ b/apps/web/supabase/templates/magic-link.html
@@ -0,0 +1 @@
+Your sign in link to Makerkit
\ No newline at end of file
diff --git a/apps/web/supabase/templates/reset-password.html b/apps/web/supabase/templates/reset-password.html
new file mode 100644
index 000000000..89fd87e5b
--- /dev/null
+++ b/apps/web/supabase/templates/reset-password.html
@@ -0,0 +1 @@
+Reset your password | Makerkit
Reset your Makerkit passwordPlease click the button below to reset your password. or copy and paste this URL into your browser: {{ .ConfirmationURL }}
Makerkit |
\ No newline at end of file