January 19th, 2000, 01:54 PM
-
Is there a way to capture the contents of a form and insert that into an e-mail and send it.
When I use the following form, I get these results:
<form action="mailto:e-mail_address" method="POST" enctype="multipart/form-data">
**************RESULTS*****************
-----------------------------7d0fada2c
Content-Disposition: form-data; name="Name:"
My Name **THIS IS WHAT I WANT TO SEND**
-----------------------------7d0fada2c
Content-Disposition: form-data; name="Address:"
My Address **THIS IS WHAT I WANT TO SEND**
*********END RESULTS******************
I would like to send only the information and not the following that is currently in the email attachment.
-----------------------------7d0fada2c
Content-Disposition: form-data; name="Address:"
January 25th, 2000, 05:12 AM
-
Try enctype="text/plain" or enctype="text/HTML"
KliK
January 25th, 2000, 05:23 AM
-
If you'll remove the:
enctype="multipart/form-data"
from your <form tag, the data would be sent as:
Name=My+Name&Address=My+Address
[This message has been edited by Vernon Frazee (edited January 25, 2000).]