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!

Redirect to mailto:

Status
Not open for further replies.

acessn

Programmer
Feb 16, 2005
71
NO
Hi.

I need to create an HTML-page that when accessed automatically redirect the user to mailto:mail@address.no, causing the mail client to pop up.

Is this possible?

Regards,
Bjorn
 
Hi Bjorn,

I would put this line into the page:

<A HREF="mailto:mail@address.no?subject=">Klick here!</A>

HTH,
SteelBurner
 
Hi.

That wasn't what I was after. I solved it like this:

Code:
<body>
 <head>
  <meta http-equiv="Refresh" content="0; URL=mailto:mail@address.no">
 </head>
</body>

Regards, Bjorn
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top