I want a basic form on my website, with e-mail notification.
Now I have the following code, but this doesn't send an email notification automatically.
Does anyone know how to add an automatic email notification?
<!DOCTYPE html>
<html>
<body>
<font face="verdana">
<h2>Title</h2>
<form action="MAILTO:(emailadress)" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name" value=""><br>
E-mail:<br>
<input type="text" name="mail" value=""><br>
Country:<br>
<input type="text" name="country" value=""><br>
<br>
<br><br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</font>
</body>
</html>