I am trying to make a simple form submit to an email address, keep in mind I am very novice and not very good with JS. Here is my HTML:
<div class="form">
<form class="signUpForm" name="myForm" id="signUpForm" method="post" >
First Name:<br>
<input type="text" name="firstname"><br>
Last Name: <br>
<input type="text" name="lastname"><br>
Email Address:<br>
<input type="email" name="email"><br>
<input type="submit" name="submit"><br>
</form>
</div>
I would like the information to be sent to an email address when the user hits submit. Can this easily be accomplished?