Hello,
I'd been trying to send a form content using the mailto option. Everything works fine except for the mail body, its empty!!
I found this on the web and it says that this should sent the form to my email account. Do I need to change something?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>mailto</title>
</head>
<body>
<form name="form" action="mailto:blablabla@gmail.com" method="get">
<input name="this">
<input type="submit" value="send form">
</form>
</body>
</html>