Hi,
Recently I downloaded a template which is awesome. However, it has a contact form on it but no way to set it up easily. I'm wondering how I can use the code provided in order to make it send to my email address. I'm aware this'll use PHP or something similar of which I have no idea how to use.
Any help would be much appreciated.
Contact Form
<form>
<div class="row half">
<div class="6u">
<input type="text" class="text" name="name" placeholder="Name">
</div>
<div class="6u">
<input type="text" class="text" name="email" placeholder="Email">
</div>
</div>
<div class="row half">
<div class="12u">
<textarea name="message" placeholder="Message"></textarea>
</div>
</div>
<div class="row">
<div class="12u">
<ul class="actions">
<li><a href="#" class="button form">Send Message</a></li>
</ul>
</div>
</div>
</form>