| 1 |
<div class="email-wrapper" style="margin-bottom: 30px; background-color: #f4f5f7; font-family: -apple-system,BlinkMacSystemFont,'Segoe UI','Noto Sans',Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji', sans-serif;"> |
| 2 |
<div style="max-width: 600px; margin: 0 auto;"> |
| 3 |
<div class="email-content" style="padding: 40px; background-color: #ffffff; border-radius: 0 0 12px 12px; border-top: 4px solid #3161F1; margin-bottom: 40px;"> |
| 4 |
<?php do_action('timetics_email_header') ;?> |
| 5 |
<div class="email-title"> |
| 6 |
<h3 style="color: #3161F1; font-size: 24px; font-weight: 600; margin: 30px 0;"> |
| 7 |
<?php esc_html_e( 'You\'re almost there!', 'timetics' ); ?> |
| 8 |
</h3> |
| 9 |
</div> |
| 10 |
|
| 11 |
<p style="color: #556880; margin-bottom: 5px"> |
| 12 |
<?php |
| 13 |
esc_html_e( |
| 14 |
'We\'re excited to have you on board! Your\'are juste a few |
| 15 |
steps away from setting up your first booking page. All |
| 16 |
that\'s left to do is verify your email address and set a |
| 17 |
password', 'timetics' |
| 18 |
); |
| 19 |
?> |
| 20 |
</p> |
| 21 |
<table cellspacing="0" cellpadding="0" border="0" style="margin: 30px 0 40px;"> |
| 22 |
<tr> |
| 23 |
<td style="padding-right: 10px;"> |
| 24 |
<a style="padding:9px 11px 10px 11px; border-radius: 5px; font-weight: 600; font-size: 13px; border: 1px solid #D8DCE2; text-decoration: none; color: #3161F1; text-align: center;" href="<?php echo esc_url( $reset_url ); ?>"><?php esc_html_e( 'Verify email and get started', 'timetics' ); ?></a> |
| 25 |
</td> |
| 26 |
</tr> |
| 27 |
</table> |
| 28 |
<p style="color: #556880; margin-bottom: 5px"><?php esc_html_e( 'This link is valid for 24 hours', 'timetics' ); ?></p> |
| 29 |
<p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;"><?php echo esc_html__('Thank you!', 'timetics'); ?></p> |
| 30 |
</div> |
| 31 |
<?php |
| 32 |
$customer_email = !empty( $customer_email ) ? $customer_email : '' ; |
| 33 |
do_action( 'timetics_email_footer', $customer_email ); |
| 34 |
?> |
| 35 |
</div> |
| 36 |
</div> |
| 37 |
|