Email COnfigs & setup

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-08 05:41:28 +00:00
parent 7da3334c03
commit 3651ee9ed4
34 changed files with 2418 additions and 77 deletions

View File

@@ -1,8 +1,8 @@
{% extends "emails/base.html" %}
{% block title %}Welcome to IGNY8{% endblock %}
{% block title %}Welcome to {{ company_name|default:"IGNY8" }}{% endblock %}
{% block content %}
<h1>Welcome to IGNY8!</h1>
<h1>Welcome to {{ company_name|default:"IGNY8" }}!</h1>
<p>Hi {{ user_name }},</p>
@@ -21,10 +21,10 @@
<a href="{{ login_url }}" class="button">Go to Dashboard</a>
</p>
<p>If you have any questions, our support team is here to help. Just reply to this email or visit our help center.</p>
<p>If you have any questions, our support team is here to help. {% if support_url %}<a href="{{ support_url }}">Visit our help center</a> or {% endif %}reply to this email.</p>
<p>
Best regards,<br>
The IGNY8 Team
The {{ company_name|default:"IGNY8" }} Team
</p>
{% endblock %}