PDA

View Full Version : bold


kelas
07-10-03, 08:14 AM
How du i get the word Somthing bold.


Mailer.BodyText = "Somthing "

Shane
07-10-03, 09:30 AM
If you are sending the e-mail in html format, you can use:


Mailer.BodyText = "<b>Somthing</b> "

kelas
07-10-03, 05:44 PM
Thanks!

But when i send it as html all data's com on the same line

Mailer.BodyText = "<B>somting </B>" & Request.form ("somting")
and now I want a new line
Mailer.BodyText = "<B>Date </B>" & (Date)"

How do i do that?

Shane
07-10-03, 07:05 PM
Use

Mailer.BodyText="<B>something </b><br>" & Request.Form("something")


the <br> tag represents a line break. You could also use <P> for paragraph break.