I'm trying to send the data of this form to my e-mail, but nothing happens. How can I fix it? I'm new at this programming language and I would love some guidance!
<title>Solicitud de Vendedor Honorario</title>
<form action="mailto:erocha@newenergypr.com" method="post">
<table>
<tr><td colspan="2" align="center" bgcolor="#FF8000"><h2>Solicitud de Vendedor Honorario</h2></td></tr>
<tr><td colspan="2" align="center" bgcolor="#D4D4D4">Adiestramiento</td></tr>
<tr>
<td colspan="2" align="center" bgcolor="#1B4F72">
<select name="yesno" id="yesno" size="1">
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</td>
</tr>
<tr><td bgcolor="#D4D4D4">Nombre:</td>
<td><input type="text" id="nombre" size="14"></td></tr>
...
<tr><td colspan="3" align="center" bgcolor="#FF8000"><h2>Disponibilidad de tiempo</h2></td></tr>
<tr><td align="center" bgcolor="#D4D4D4"><b>Domingo</b></td>
<td bgcolor="#D4D4D4"><b>Desde:</b><select id="domingodesde" size="1">
<option value="0">No disponible</option>
<option value="00">00:00am</option>
<option value="01">01:00am</option>
<option value="02">02:00am</option>
...
More of those, exactly the same but for the other weekdays... Now checkboxes:
<tr>
<td align="center" bgcolor="#F1C40F"><b>Ponce</b></td>
<td bgcolor="#D4D4D4">
<input type="checkbox" id="arr" value="arroyo">Arroyo<br>
<input type="checkbox" id="coa" value="coamo">Coamo<br>
<tr><td colspan="2" align="center"><input type="submit" value="Submit"></td></tr>
The app looks like this:
https://i.stack.imgur.com/OIQMS.jpg https://i.stack.imgur.com/SbDkx.jpg
Once submited, all the data that was selected should be sent to an e-mail.