diff --git a/templates/emails/transactional/cannot-create-alias-domain.html b/templates/emails/transactional/cannot-create-alias-domain.html
index cf21d1ca..f5f274c2 100644
--- a/templates/emails/transactional/cannot-create-alias-domain.html
+++ b/templates/emails/transactional/cannot-create-alias-domain.html
@@ -1,8 +1,11 @@
-Hi {{name}}
+{% extends "base.html" %}
-An email has been sent to the alias {{alias}} that would be created automatically as you own the domain {{domain}}. However as your plan is no longer premium, this creation cannot happen.
+{% block content %}
+ {{ render_text("Hi " + name) }}
+ {{ render_text("An email has been sent to the alias " + alias + " that would be created automatically as you own the domain " + domain + ".") }}
-Please upgrade to premium plan in order to use this feature.
+ {{ render_text("However as your plan is no longer premium, this creation cannot happen.") }}
+ {{ render_text('Please upgrade to premium plan in order to use this feature.') }}
-Best,
-SimpleLogin team.
+ {{ render_text('Thanks,
SimpleLogin Team.') }}
+{% endblock %}