mailto links

R

Roxanne Audenino

I want to include a BCC list in the email that is
generated when someone clicks on the email link on my
website. Can I do this from the Frontpage interface, or
do I have to do it in the HTML? If it has to be done in
HTML, what is the syntax that needs to be used?

Thank you!
 
J

Jim Buyens

-----Original Message-----
I want to include a BCC list in the email that is
generated when someone clicks on the email link on my
website. Can I do this from the Frontpage interface, or
do I have to do it in the HTML? If it has to be done in
HTML, what is the syntax that needs to be used?

FrontPage can't do this; you'd have to use a custom forms
mailer.

Chances are your host already provides a custom mailer;
check their support pages for more information.

Otherwise, you'd have to code the mailing function in ASP,
ASP.NET, PHP, or whatever your host supports.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
J

Jim Buyens

-----Original Message-----
I want to include a BCC list in the email that is
generated when someone clicks on the email link on my
website. Can I do this from the Frontpage interface, or
do I have to do it in the HTML? If it has to be done in
HTML, what is the syntax that needs to be used?

Did you mean an HTML form mailer or just a mailto:
hyperlink?

If its just a mailto: hyperlink, code:

mailto:[email protected]&[email protected]&subject=Howdy

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
Top