hiperlink

C

chad123

how do i make a hiperlink butten to mail the page to a friend like the one on
internet explorer tool bar...
 
D

Dan Abrey

chad123 said:
how do i make a hiperlink butten to mail the page to a friend like the one on
internet explorer tool bar...

You will need to use some kind of dynamic scripting to create a form which
enables users to enter the address they wish to send it to, their name etc,
and then use the variables created to mail the form. Either that, or just
create a simple link for each page if theres not too many pages you wish to
add this functionality to. ie:

<a href=mailto:?subject=[a subject line]&body=[your body text including a
link to the page]>Mail to a friend</a>
 
Top