WillShakespeare
MIS
I am building and sending an email message with VBScript.
All works well, but I would like to bold certain words in the message body, which is a built (concatenated) string. For example, I use VbTab when I want to make a tab, and VbCrLf when I want a new line:
I'd like to bold the Request values.
Anybody have a quick way i can do this without 3rd party tools?
Will
All works well, but I would like to bold certain words in the message body, which is a built (concatenated) string. For example, I use VbTab when I want to make a tab, and VbCrLf when I want a new line:
Code:
[i]snippet[/i]
mySmartMail.Body = "This mail has been sent from: " & Request("company") & VbCrLf &_
"Attending? " & VbTab & VbTab & VbTab & Request("attendaim") & VbCrLf &_
"Informal Dinner? " & VbTab & VbTab & Request("dinnerinf") & VbCrLf &_
"Main Dinner? " & VbTab & VbTab & Request("dinnermain") & VbCrLf &_
"Reserve? " & VbTab & VbTab & VbTab & Request("reserve") & VbCrLf &_
"Reservation Details: " & VbTab & Request("reservation") & VbCrLf
I'd like to bold the Request values.
Anybody have a quick way i can do this without 3rd party tools?
Will