Click to See Complete Forum and Search --> : Mailto comand
gpmaker
02-21-2004, 08:54 PM
I know how to use mailto to set default like body text, subject, ....
<a href="mailto:blah@blah.com?body="fdfd">fkjd</a>
but how do i set the color of the text, i would like the "fdfd" to be color red or blue, how do i do this???
PeOfEo
02-21-2004, 09:04 PM
Originally posted by gpmaker
I know how to use mailto to set default like body text, subject, ....
<a href="mailto:blah@blah.com?body="fdfd">fkjd</a>
but how do i set the color of the text, i would like the "fdfd" to be color red or blue, how do i do this??? you dont. With html forms you can only send data in text form. To send html emails (which can have document layout, text style so on and so fourth) you need an smtp server, and a server side language to connect to it and specify html as the mail format. www.webdevfaqs.com has stuff about how to do mailing with php.
buntine
02-22-2004, 01:06 AM
<a href="mailto:blah@blah.com?body="fdfd">fkjd</a>
This is an extraordinaryly outdated method of sending email from a web page. Its got several flaws.
Take PeOfEo's advice and use a SSL to send emails.
IncaWarrior
02-22-2004, 02:10 AM
well if it's not to send a form, rather to assist the user in sending an email then it's ok
PeOfEo
02-22-2004, 03:56 PM
Originally posted by IncaWarrior
well if it's not to send a form, rather to assist the user in sending an email then it's ok Huh??? We are talking about the mailto action of forms. What are you talking about???
Paul Jr
02-22-2004, 06:39 PM
Originally posted by PeOfEo
Huh??? We are talking about the mailto action of forms. What are you talking about???
Actually, you were, lol. If you notice in the original poster's post, he is using a link, and not a form. :D
PeOfEo
02-22-2004, 07:05 PM
Originally posted by Paul Jr
Actually, you were, lol. If you notice in the original poster's post, he is using a link, and not a form. :D Ohh... no wonder. It helps when you read the original post :(
Paul Jr
02-22-2004, 07:08 PM
Originally posted by PeOfEo
Ohh... no wonder. It helps when you read the original post :(
It's okay, man. Happens to the best of us. ;)
buntine
02-22-2004, 09:20 PM
I still think what i said earlier applies... Though, its alot esasier than the alternative.