Skip to content

Commit d51bacb

Browse files
committed
✨ Add email templates for account approval and rejection notifications
1 parent b224fef commit d51bacb

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{% extends 'base.html' %}
2+
{% block title %} {% include 'on_account_approved.email.subject.txt' %} {% endblock %}
3+
{% block content %}
4+
<p>Dear {{ user.first_name or user.user_name }},</p>
5+
6+
<p>
7+
Thank you for your interest in {{ product.display_name }}. We are pleased to provide you with a one-time invitation link to register on the platform.
8+
</p>
9+
10+
<p>
11+
Click <a href="{{ link }}">here</a> to access the registration page.
12+
</p>
13+
14+
<p>
15+
Please follow the on-screen information and proceed with your registration. If any problem should occur, please feel free to contact us at <a href="mailto:{{ product.support_email }}">{{ product.support_email }}</a>.
16+
</p>
17+
18+
<p>Enjoy {{ product.display_name }}!</p>
19+
20+
<p>Best regards,</p>
21+
22+
<p>The {{ product.display_name }} Team</p>
23+
{% endblock %}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{% extends 'base.html' %}
2+
{% block title %} {% include 'on_account_rejected.email.subject.txt' %} {% endblock %}
3+
{% block content %}
4+
<p>Dear {{ user.first_name or user.user_name }},</p>
5+
6+
<p>
7+
Thank you for your interest in {{ product.display_name }}. Unfortunately, your registration is not eligible for participation in this program.
8+
</p>
9+
10+
<p>
11+
In case of further interest in this or other solutions we might offer, please contact us at <a href="mailto:{{ product.support_email }}">{{ product.support_email }}</a>.
12+
</p>
13+
14+
<p>Best regards,</p>
15+
16+
<p>The {{ product.display_name }} Team</p>
17+
{% endblock %}

0 commit comments

Comments
 (0)