Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active March 10, 2018 17:26
Show Gist options
  • Save anthonybudd/ff9fbf6c57fbd62e8761e9b5cc7c92f7 to your computer and use it in GitHub Desktop.
Save anthonybudd/ff9fbf6c57fbd62e8761e9b5cc7c92f7 to your computer and use it in GitHub Desktop.
<h3>You have a new contact from enquirey!</h3><br>
<p>
<strong>Name:</strong><?= $name ?>
</p>
<p>
<strong>email:</strong>
<a href="mailto:<?= $email ?>"><?= $email ?></a>
</p>
<p>
<strong>Skills:</strong><br>
<ul>
<?php foreach($skills as $skill): ?>
<li>
<?= $skill ?>
</li>
<?php endforeach;?>
</ul>
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment