Skip to content

Commit 66f73d3

Browse files
authored
🎨 Enhance account request emails to reduce invitation errors (#8317)
1 parent 9149e41 commit 66f73d3

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
<p>Dear Support team
55

66
<p>
7-
We have received the following request form for an account in {{ product.display_name }} from <b>{{ host }}</b>
7+
We have received the following request form for an account in :
8+
<ol>
9+
<li>Product: <b>{{ product.display_name }}</b></li>
10+
<li>Host: <b>{{ host }}</b></li>
11+
</ol>
812
</p>
913

1014
<pre>

packages/notifications-library/src/notifications_library/templates/on_account_requested.email.content.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Dear Support team,
22

3-
We have received the following request form for an account in {{ product.display_name }} from **{{ host }}**:
3+
We have received the following request form for an account in :
4+
- Product: **{{ product.display_name }}**
5+
- Host: **{{ host }}**
46

57
{{ dumps(request_form) }}
68

services/web/server/src/simcore_service_webserver/templates/common/request_account.jinja2

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ Dear {{ name }},
1111
</p>
1212

1313
<p>
14-
We have received the following request form for an account in {{ product.display_name }} from {{ host }}
14+
We have received the following request form for an account in :
15+
<ol>
16+
<li>Product: <b>{{ product.display_name }}</b></li>
17+
<li>Host: <b>{{ host }}</b></li>
18+
</ol>
1519
</p>
1620

1721
<pre>

0 commit comments

Comments
 (0)