Click to See Complete Forum and Search --> : HTML Mailing


Htmlwiz
01-01-2007, 09:36 PM
Is it possible to use <mailto="email@emailhost.com> to send a mail that contains the information in t he form to the email address listed in the <mailto="email@emailhost> code without opening a mailing program like Outlook where they can see the Email address?

bpat1434
01-01-2007, 09:47 PM
No, <mailto is not a valid tag. <a href="mailto:email@emailhost.com"> is valid.

With the mailto: switch, it automatically opens the default email program on the users computer. What you could do is use a regular form, post it to a PHP page, and use the mail() command in PHP to send the information.

Htmlwiz
01-01-2007, 10:05 PM
what would the full coding be then?