View Full Version : bold
How du i get the word Somthing bold.
Mailer.BodyText = "Somthing "
If you are sending the e-mail in html format, you can use:
Mailer.BodyText = "<b>Somthing</b> "
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?
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.
vBulletin® v3.6.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.