54 lines
2.0 KiB
HTML
54 lines
2.0 KiB
HTML
---
|
|
bodyClass: bg-gray-postmark-lighter
|
|
---
|
|
|
|
<extends src="mailers/layouts/main.html">
|
|
<block name="template">
|
|
<table class="email-wrapper w-full bg-gray-postmark-lighter font-sans">
|
|
<tr>
|
|
<td align="center">
|
|
<table class="email-content w-full">
|
|
<component src="mailers/components/header.html"></component>
|
|
<tr>
|
|
<td class="email-body w-full">
|
|
<table align="center" class="email-body_inner w-570 bg-white mx-auto sm:w-full">
|
|
<tr>
|
|
<td class="px-45 py-24">
|
|
<div class="text-base">
|
|
<h1 class="mt-0 text-2xl font-bold text-left text-gray-postmark-darker">
|
|
Welcome {{ name }}!
|
|
</h1>
|
|
<p class="mt-6 mb-20 text-base leading-24 text-gray-postmark-dark">
|
|
First of all, thanks for signing up and welcome aboard!
|
|
</p>
|
|
<p class="mt-6 mb-20 text-base leading-24 text-gray-postmark-dark">
|
|
My name is Mokhtar and I built {{ page.company.product }} after
|
|
growing tired of paying exorbitant phone bills for international
|
|
communications and getting frustrated over the lack of decent
|
|
consumer-oriented cloud phone solutions.
|
|
</p>
|
|
<p class="mt-6 mb-20 text-base leading-24 text-gray-postmark-dark">
|
|
If you ever need help or have feedback, please don't hesitate to
|
|
reach out by email to
|
|
<a href="mailto:mokhtar@shellphone.app">mokhtar@shellphone.app</a>
|
|
or simply reply to this email.
|
|
</p>
|
|
<p class="mt-6 mb-20 text-base leading-24 text-gray-postmark-dark">
|
|
Take care!
|
|
<br />{{ page.company.sender }} <br />
|
|
Founder at {{ page.company.product }}
|
|
</p>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<component src="mailers/components/footer.html"></component>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</block>
|
|
</extends>
|