2021-10-26 21:34:21 +00:00
|
|
|
---
|
|
|
|
bodyClass: bg-gray-postmark-lighter
|
|
|
|
---
|
|
|
|
|
2022-05-14 10:22:06 +00:00
|
|
|
<extends src="app/mailers/renderer/html/layouts/main.html">
|
2021-10-26 21:34:21 +00:00
|
|
|
<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">
|
2022-05-14 10:22:06 +00:00
|
|
|
<component src="app/mailers/renderer/html/components/header.html"></component>
|
2021-10-26 21:34:21 +00:00
|
|
|
<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">
|
2022-05-14 10:22:06 +00:00
|
|
|
Hi 👋,
|
2021-10-26 21:34:21 +00:00
|
|
|
</h1>
|
|
|
|
<p class="mt-6 mb-20 text-base leading-24 text-gray-postmark-dark">
|
2022-05-14 10:22:06 +00:00
|
|
|
{{ invitation_sender_name }} from {{ invitation_sender_organization_name }}
|
|
|
|
has invited you to join their organization.
|
|
|
|
Use the button below to set up your account and get started.
|
|
|
|
<strong>
|
|
|
|
This invitation is only valid for the next 7 days.
|
|
|
|
</strong>
|
2021-10-26 21:34:21 +00:00
|
|
|
</p>
|
|
|
|
<table align="center" class="w-full text-center my-30 mx-auto">
|
|
|
|
<tr>
|
|
|
|
<td align="center">
|
|
|
|
<table class="w-full">
|
|
|
|
<tr>
|
|
|
|
<td align="center" class="text-base">
|
|
|
|
<a
|
2021-10-30 12:31:22 +00:00
|
|
|
href="{{ action_url }}"
|
2021-10-26 21:34:21 +00:00
|
|
|
class="button button--green"
|
|
|
|
target="_blank"
|
|
|
|
>
|
2022-05-14 10:22:06 +00:00
|
|
|
Set up account
|
2021-11-01 23:13:30 +00:00
|
|
|
</a>
|
2021-10-26 21:34:21 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<p class="mt-6 mb-20 text-base leading-24 text-gray-postmark-dark">
|
2022-05-14 10:22:06 +00:00
|
|
|
Welcome aboard,
|
|
|
|
<br />The {{ page.company.product }} Team
|
2021-10-26 21:34:21 +00:00
|
|
|
</p>
|
|
|
|
<table class="body-sub">
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<p
|
2022-05-14 10:22:06 +00:00
|
|
|
class="mt-6 mb-20 text-xs leading-24 text-gray-postmark-dark"
|
2021-10-26 21:34:21 +00:00
|
|
|
>
|
|
|
|
If you're having trouble with the button above, copy and
|
|
|
|
paste the URL below into your web browser.
|
|
|
|
</p>
|
|
|
|
<p
|
2022-05-14 10:22:06 +00:00
|
|
|
class="mt-6 mb-20 text-xs leading-24 text-gray-postmark-dark"
|
2021-10-26 21:34:21 +00:00
|
|
|
>
|
2021-10-30 12:31:22 +00:00
|
|
|
{{ action_url }}
|
2021-10-26 21:34:21 +00:00
|
|
|
</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-05-14 10:22:06 +00:00
|
|
|
<!--<component src="app/mailers/renderer/html/components/footer.html"></component>-->
|
2021-10-26 21:34:21 +00:00
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</block>
|
|
|
|
</extends>
|