Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

E-mail to a friend 2

Status
Not open for further replies.

peter11

Instructor
Mar 16, 2001
334
US
I need to create a button or form that allows an individual to e-mail a URL or and an actual web site to a friend to a frend.
 
Do you have CGI capability? There is a way with JavaScript but it is sloppy. Mike Barone
FREE CGI/Perl Scripts & JavaScript Generators
Ace PopUp Generator Software - Totally FREE
 
Hey peter11, try this: Just add the email address in question to the action tag ok?? The email that goes in there should be the one that recives[/red] the email, ok??

<html>
<head>
<title>E-mail Form</title>
</head>

<body bgcolor=&quot;#FFFFFF&quot;>
<form method=&quot;post&quot; action=&quot;mailto:email@xxx.com&quot;[/red]>
<p>Enter URL:
<input type=&quot;text&quot; name=&quot;textfield&quot; size=&quot;45&quot; maxlength=&quot;45&quot;>
</p>
<p>
<input type=&quot;submit&quot; name=&quot;Submit&quot; value=&quot;Enter&quot;>
<input type=&quot;reset&quot; name=&quot;Submit2&quot; value=&quot;Reset&quot;>
</p>
</form>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top