Created
May 12, 2023 14:13
-
-
Save cesarockstar1985/aff299496d827b163c072e891bf26713 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table border="0" cellpadding="0" cellspacing="0" width="75%" align="center"> | |
<tr> | |
<td> | |
<p> | |
</p> | |
<br/> | |
<p> | |
<p> | |
We are working on your submission | |
application #<?= h($accountNumber) ?> | |
<?= h($client_name) ?> | |
<?= h($bondType) ?>. | |
</p> | |
<p>The surety needs the following information :</p> | |
<ol> | |
<?php foreach ($todos as $key => $todo) : ?> | |
<li><input type="checkbox" <?= $todo->completed ? 'checked' : '' ?>> <?= h($todo->title) ?></li> | |
<?php endforeach; ?> | |
</ol> | |
</p> | |
<br/> | |
<p><?= $sub ?></p> | |
<?php if ($underwriter) : ?> | |
<p> | |
<?= h($underwriter->first_name) . ' ' . h($underwriter->last_name) ?> | |
<br> | |
<?= h($underwriter->email) ?> | |
<br> | |
Underwiter | |
</p> | |
<?php endif; ?> | |
<p> | |
Thank you, | |
<br/> | |
Worldwide Insurance Specialists Underwriting Team | |
<br/> | |
888-518-8011 | |
</p> | |
</td> | |
</tr> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment