May 24, 2005 #1 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. 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
May 26, 2005 #2 SteelBurner MIS Jun 23, 2002 96 Hi Bjorn, I would put this line into the page: <A HREF="mailto:mail@address.no?subject=">Klick here!</A> HTH, SteelBurner Upvote 0 Downvote
Hi Bjorn, I would put this line into the page: <A HREF="mailto:mail@address.no?subject=">Klick here!</A> HTH, SteelBurner
May 27, 2005 Thread starter #3 acessn Programmer Feb 16, 2005 71 NO 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 Upvote 0 Downvote
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