PDA

View Full Version : Modify


stevan
05-10-2003, 10:56 PM
I am using a cgi form script

I have them input there email adress like

<input type='text' name='Email Address' value='' size='' maxlength=''>

WHen i get it i would like to be able to click on there email adrees and have it open up a email letter so i do not have to cut and paste there email adress into the return letter

Or is there a way to make the form when it is sent to me show it is FROM that email adress so all we have to do is hit the reply button



THXS for the help

STEVE:confused:

ACJavascript
05-13-2003, 11:49 PM
Well you could try one of these..

1. When you send yourself the email with the users email in it do this.

print MAIL "To: You!\n";
print MAIL "From: $FORM{'Email Address'}\n";
print MAIL "Reply-To: $FORM{'Email Address'}\n";

ect...


2. You could make a link in the email itsefl. like so

print MAIL "<a href='mailto:$FORM{'Email Address'}'>Email Them</a>\n";

Hope this helps :D

HappyScripting

stevan
05-14-2003, 01:12 AM
THXS