31 lines
808 B
HTML
31 lines
808 B
HTML
{% extends "emails/base.html" %}
|
|
{% block title %}Welcome to IGNY8{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Welcome to 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. Just reply to this email or visit our help center.</p>
|
|
|
|
<p>
|
|
Best regards,<br>
|
|
The IGNY8 Team
|
|
</p>
|
|
{% endblock %}
|