Files
igny8/backend/igny8_core/templates/emails/welcome.html
2026-01-20 12:49:01 +00:00

31 lines
960 B
HTML

{% extends "emails/base.html" %}
{% block title %}Welcome to {{ company_name|default:"IGNY8" }}{% endblock %}
{% block content %}
<h1>Welcome to {{ company_name|default:"IGNY8" }}!</h1>
<p>Hi {{ user_name }},</p>
<p>We're excited to have you on board! Your account <strong>{{ account_name }}</strong> is ready to go.</p>
<div class="success-box">
<strong>What's next?</strong>
<ul style="margin: 10px 0 0 0; padding-left: 20px;">
<li>Explore your dashboard</li>
<li>Set up your first project</li>
<li>Connect your integrations</li>
</ul>
</div>
<p style="text-align: center;">
<a href="https://app.igny8.com/" class="button">Go to Dashboard</a>
</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 {{ company_name|default:"IGNY8" }} Team
</p>
{% endblock %}