Milton,
I too am a HostPapa 'newbie' but I have used html forms to generate emails to myself via my employer's web server. Forgive me if you already know the following: An html form can not by itself generate an email message. Usually you have to submit the form's input to a cgi-bin script on the host server (in this case HostPapa's) via the "action" and "method" parameters in the "form" tag: eg,
<form ...
action="
http://some.server.ca//cgi-bin/some_script"
method="post" >
...
</form>
HostPapa may have a cgi-script that you can install into your site's cgi-bin folder. If not, I suspect you can find some freeware php script on the web. The script receives the form's input (the values 'submitted" by the user), converts the content to a set of 'fieldName=userInputValue' pairs, and sends these pairs a message to the "to" address specified in the form's input (or, possibly, to some address specified in the script. You'll have to enable access to your cgi-bin folder via incoming forms. There's advice on the web on how to do that safely (check Apache documentation re cgi-bin and user forums). Similarly re. getting a php script in cgi-bin to run on your site, check the online php docs and user forums.