i have created a contact form, i am now trying to send the contact form as an email once the user has clicked in the submit button. but once the user clicked on submit i do not receive any emails. i have included my html form. i am aware that i need php and maybe javascript codes in order to make the email work but i do not know how to start this process.
i could do with some help.
<div id="details">
<form method="post" name="Products" action="http://www.shop4pop.nl/products/">
Please leave your name: <br>
<input type="text" name="firstname"> <br>
Email: <br>
<input type ="email" name ="email">
<br>
<div id="detailsSecond">
Please leave us a description of your artwork brief: <br>
<textarea name = "textarea" rows="10" cols="50">Write something here</textarea>
</div>
<input type="submit" value="Submit">
</form>
</div>