Hi Hung,

so you mean you want to handle the response programmatically. Say you have a
form like that:

your name: <input field>
your email: <input field>
did you like the product? <dropdown box with: a) good, b) ok, c) bad

As far as I understand your problem, you don't want to send the email of
your clients to real people who just read the comments and react
accordingly, but track the responses, say by storing them in a database.
This way you're able to analyse the acceptance of your product on an
automated basis. Am I completely wrong here, or is this kind of what you
want to achieve?

Concerning your question on handling of HTML forms in emails - just try the
following: Create an HTML-page with just a form like this:

<form action="mailto:[EMAIL PROTECTED]";>
    <input type="text" name="name">
    <input type="text" name="email">
    <!-- and so on... just define your fields -->
</form>

The result of submitting this form is that it submits the data you input
into the fields to [EMAIL PROTECTED] in a simple text format. By first
sending it to your email address, you can analyse the format, write a parser
for this format, insert this code into a mailet and you're done.

HTH,
Thomas



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to