PDA

Click to See Complete Forum and Search --> : E-Mail


Ryan_231
Jan 9th, 2001, 04:53 AM
i'm writing a simple web page and i added an e-mail link to myself

<A mailto:ryan_231@#####.com>E-Mail</a>

my question is when you click on it outlook opens up and inserts my e-mail address in the to field how do i make it put just Ryan in the to field and still recieve the e-mail.

Danial
Jan 9th, 2001, 04:27 PM
Hi Ryan,
Here is the code u need.

<HTML>
<HEAD>
<TITLE></TITLE>

</HEAD>

<BODY>
<a href="mailto:Rayan<ryan_231@#####.com>">Mail</a>
</BODY>
</HTML>

Ryan_231
Jan 9th, 2001, 05:42 PM
thanks a lot this works great.