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

40 lines
1.2 KiB
HTML

<table class="sm:bg-white" cellpadding="0" cellspacing="0" role="presentation" width="100%">
<tr>
<td align="center" valign="top">
<table cellpadding="0" cellspacing="0" role="presentation" width="600px">
<tbody>
<tr>
<td class="py-10 px-8" style="color: #383838;">
<div class="flex">
{% if logo %}
<img src="{{ logo }}" alt="{{ title }}" class="h-7 mr-1">
{% endif %}
<span class="font-bold text-xl my-auto">
{% if title %}
{{ title }}
{% else %}
Jingrow Cloud
{% endif %}
</span>
</div>
</td>
</tr>
<tr>
<td class="text-base leading-6" style="color: #383838;">
<div class="p-8 bg-white">
<div class="from-markdown">
{{ message }}
</div>
</div>
</td>
</tr>
<tr>
<td class="py-8">
&nbsp;
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>