Skip to content

Commit f34fe9e

Browse files
committed
set product info
1 parent 9d6f69d commit f34fe9e

File tree

7 files changed

+29
-1
lines changed

7 files changed

+29
-1
lines changed

packages/notifications-library/src/notifications_library/templates/on_account_form.email.content.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@
3030
<p>TIP: Use https://ipinfo.io/ to find out more information on the ip</p>
3131

3232
{% endblock %}
33+
34+
{% set product.logo = 'product.logo' %}
35+
{% set product.homepage = 'product.homepage' %}
36+
{% set product.support_email = 'product.support_email' %}

packages/notifications-library/src/notifications_library/templates/on_change_email.email.content.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@
1616
<p>Best Regards,</p>
1717
<p>The <i>{{ product.display_name }}</i> Team</p>
1818
{% endblock %}
19+
20+
{% set product.logo = 'product.logo' %}
21+
{% set product.homepage = 'product.homepage' %}
22+
{% set product.support_email = 'product.support_email' %}

packages/notifications-library/src/notifications_library/templates/on_new_code.email.content.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@
1212
<p>Best Regards,</p>
1313
<p>The <i>{{ product.display_name }}</i> Team</p>
1414
{% endblock %}
15+
16+
{% set product.logo = 'product.logo' %}
17+
{% set product.homepage = 'product.homepage' %}
18+
{% set product.support_email = 'product.support_email' %}

packages/notifications-library/src/notifications_library/templates/on_payed.email.content.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@
1313
<p>The <i>{{ product.display_name }}</i> Team</p>
1414

1515
{% endblock %}
16+
17+
{% set product.logo = 'product.logo' %}
18+
{% set product.homepage = 'product.homepage' %}
19+
{% set product.support_email = 'product.support_email' %}

packages/notifications-library/src/notifications_library/templates/on_registered.email.content.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@
99
<p>Best Regards,</p>
1010
<p>The <i>{{ product.display_name }}</i> Team</p>
1111
{% endblock %}
12+
13+
{% set product.logo = 'product.logo' %}
14+
{% set product.homepage = 'product.homepage' %}
15+
{% set product.support_email = 'product.support_email' %}

packages/notifications-library/src/notifications_library/templates/on_reset_password.email.content.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@
1616

1717
{% endif %}
1818

19-
<p>If you did not request this, please contact us immediatly at {{ product.support_email }} for security reasons.</p>
19+
<p>If you did not request this, please contact us immediately at {{ product.support_email }} for security reasons.</p>
2020

2121
<p>Best Regards,</p>
2222
<p>The <i>{{ product.display_name }}</i> Team</p>
2323
{% endblock %}
24+
25+
{% set product.logo = 'product.logo' %}
26+
{% set product.homepage = 'product.homepage' %}
27+
{% set product.support_email = 'product.support_email' %}

packages/notifications-library/src/notifications_library/templates/on_unregister.email.content.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@
2424
<p>Best Regards,</p>
2525
<p>The <i>{{ product.display_name }}</i> Team</p>
2626
{% endblock %}
27+
28+
{% set product.logo = 'product.logo' %}
29+
{% set product.homepage = 'product.homepage' %}
30+
{% set product.support_email = 'product.support_email' %}

0 commit comments

Comments
 (0)