I want to send details from a simple html form to my email without outlook or any email application.
I have the following code:
<!DOCTYPE html>
<html>
<head>
<title>form</title>
</head>
<body>
<form>
<table>
<tr>
<td>
First name:
</td>
<td>
<input type="text" name="first_name">
</td>
</tr>
<tr>
<td>
Last name:
</td>
<td>
<input type="text" name="last_name">
</td>
</tr>
</table>
</form>
</body>
</html>
Can anyone please help?
Thanks - R.T. Jones