31 lines
953 B
HTML
31 lines
953 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="{{ login_url }}" 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 %}
|