creating a contact form within a custom theme

Permalink
Hi, i have recently created a custom theme and uploaded it to my site. within my custom theme html coding i have included a contact me form, i was hoping to get some help with how to link the form submission to direct to concrete 5 conversations/emails or even to my own email account ..... new to this please help
<code>
</div>
<div class="w3-col m7">
<form class="w3-container w3-card-4 w3-padding-16 w3-white" action="/action_page.php" target="_blank">
<div class="w3-section">
<label>Name</label>
<input class="w3-input" type="text" name="Name" required>
</div>
<div class="w3-section">
<label>Email</label>
<input class="w3-input" type="text" name="Email" required>
</div>
<div class="w3-section">
<label>Due Date</label>
<input class="w3-input" type="text" name="Due Date" required>
</div>
<div class="w3-section">
<label>Message</label>
<input class="w3-input" type="text" name="Message" required>
</div>
</form>
</div>
</code>

 
mnakalay replied on at Permalink Reply
mnakalay
Why don't you just use the core Form Block? It will save every submission to your dashboard for you to review and manage and you can specify an email address to send a copy of the submitted data to.