|
Posted by Geoff on 03/13/07 20:25
"Jonathan N. Little" <lws4art@centralva.net> wrote in message
news:e078d$45f599c7$40cba785$18302@NAXS.COM...
> Geoff wrote:
>> I have a simple HTML form, one of the Input boxes invites the sender to
>> enter their email address. Is there a way that I can copy their email
>> address into either the From line or the Subject line of the email being
>> sent to me? The idea being to make it easier to find individuals
>> emails at a later date.
>
> Yes, that is the job of the server-side that is receiving data from this
> form, validating and then sending the email to you, right? You don't have
> a "mailto:" in the form's ACTION do you?
>
> --
> Take care,
>
> Jonathan
> -------------------
> LITTLE WORKS STUDIO
> http://www.LittleWorksStudio.com
Thanks Jonathan, I don't have "mailto", I have:
<FORM METHOD="POST" ACTION="/common-cgi/fmail">
<INPUT TYPE="hidden" NAME="recipient" VALUE=sales@xxxxxxx.com>
<INPUT TYPE="hidden" NAME="subject" VALUE="Contact form">
<INPUT TYPE="hidden" NAME="email" VALUE="www@xxxxxx.com">
Later on, I have
<input type="text" name="Email" size="47">
It is the contents of this text box, where the visitor has entered their
email address, that I want to appear in the "From" or "Subject" line of
the emailed form sent to me.
At the moment, when I receive an email, it has
From: www@xxxxxxx.com
Subject: Contact form
I hope I have made myself clear.
Thanks,
Geoff
Navigation:
[Reply to this message]
|