jcloude/press/templates/emails/product_trial_verify_account.html
2025-12-23 20:42:58 +08:00

29 lines
833 B
HTML

{% import "templates/emails/macros.html" as utils %}
{% extends "templates/emails/saas_trial.html" %}
{% set title = title %}
{% set image_path = image_path %}
{% set read_pixel_path = read_pixel_path %}
{% set otp = otp %}
{% set header_content = header_content %}
{% block content %}
<td class="text-base leading-6 text-gray-900">
<div class="p-8 bg-white from-markdown">
{% if header_content %}
{% autoescape false %}
{{ header_content }}
{% endautoescape %}
{% endif %}
<p class="font-medium">Verification Code</p>
<div class="text-xl font-bold">{{ otp }}</div>
{{ utils.separator() }}
<p class="my-0">Team Jingrow</p>
</div>
{% if read_pixel_path %}
<img src="{{ read_pixel_path }}">
{% endif %}
</td>
{% endblock %}