It can be mailed to whomever you choose. If you look in the code it generates, you'll see:
Code:
<input type="hidden" name="mailto" value="your(at)emailaddress.com">
If you change this to:
Code:
<input type="text" name="mailto" onkeyup="this.value = this.value.replace(/@/g, '(at)');">
it will show a textbox in which the user can type the email address to send to.
The unreliable way is:
Code:
<form method="post" action="mailto:user@domain.tld">
which will send the data (if the user is using a compatible browser, and doesn't have a firewall that will stop this, and has an email client that will let this through) in an ugly and just-barely-readable format (e.g. "Check out http://www.google.com!" would become "Check+out+http%58%2f%2fwww%2egoogle%2ecom%33" in an attachment to an email, the name of which would vary depending on the browser used).
Bookmarks