This form uses
form method="POST" action="mailto:***@***.***"
to email the results. But the form of what's sent is pretty ugly.
A better rendition at the email receiving end can be managed
by creating a link of the form mailto:user@address?subject=xxxxx&body=xxxxx ,
however, (a) that means dealing with the URL encoding yourself, and (b)
the form "submission" will need to be handled by some javascript code.
More on that later.