Skip to content

Instantly share code, notes, and snippets.

@cesarockstar1985
Created May 12, 2023 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cesarockstar1985/aff299496d827b163c072e891bf26713 to your computer and use it in GitHub Desktop.
Save cesarockstar1985/aff299496d827b163c072e891bf26713 to your computer and use it in GitHub Desktop.
<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