mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-08-25 13:49:40 +00:00
25 lines
913 B
Plaintext
25 lines
913 B
Plaintext
{% extends "templated_email/email_base.email" %}
|
|
|
|
{% block subject %}
|
|
Invitation Email
|
|
{% endblock %}
|
|
|
|
{% block plain %}
|
|
<tr>
|
|
<td style="padding: 0 27px 15px;">
|
|
<p style="margin: 0; font-size: 16px; line-height: 20px; padding: 36px 0 0; font-weight: 500; color: #1f2532;">
|
|
Hi {{full_name}},
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 0 27px 22px;">
|
|
<p style="margin: 0;font-size: 14px; font-weight: 400; line-height: 21px; color: #1f2532;">
|
|
You are receiving this email for joining the ZOD bank platform. Please use <b>{{ url }} </b> link to join the platform.
|
|
<br> Your credentials are:- username = <b>{{email}}</b> and password <b>{{password}}</b><br> <br>Below are the steps to complete the account and how to use this platform.
|
|
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
{% endblock %}
|