Last active
March 10, 2018 17:26
-
-
Save anthonybudd/ff9fbf6c57fbd62e8761e9b5cc7c92f7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<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