I have an ASP form that pulls valid values from an Oracle database. It's a pretty simple form for accepting training class enrollments, and all I want to do is send the results in an e-mail to one person (hard-coded e-mail address). I'm not sure whether I need to do this using ASP, or whether there is some simple way to do this using HTML.
I tried using <form enctype="text/plain" method="get" action="mailto:aaa@aaa.com">, but it's not working. The results get appended to the e-mail address rather than placed in the body of the message.
Any suggestions would be gratefully accepted.
I tried using <form enctype="text/plain" method="get" action="mailto:aaa@aaa.com">, but it's not working. The results get appended to the e-mail address rather than placed in the body of the message.
Any suggestions would be gratefully accepted.