Hello!

If you send HTML e-mails (which is the only way to control an e-mails visual
style - as far I'm concerned), why don't you embed some HTML tags in the
message itself?!

It's just like building standard HTML, except for the fact that there's a
more limited range of what you can do within the e-mail.

Notice the <b></b> tag in the second last line of your concatenation
listing.

strBody = strBody & Request.QueryString("place") & vbCrLf & vbCrLf
strBody = strBody & "Goal 1: "  & strGoal1 & vbCrLf & vbCrLf & vbCrLf
strBody = strBody & strAction1 & vbCrLf & vbCrLf & vbCrLf
strBody = strBody & "<b>" & strEval1 & "</b>" & vbCrLf & vbCrLf & vbCrLf
strBody = strBody & strCost1 & vbCrLf & vbCrLf & vbCrLf

Set objMessage = Server.CreateObject("CDO.Message")
objMessage.To       = "[EMAIL PROTECTED]"
objMessage.From     = "Survey Complete <[EMAIL PROTECTED]>"
objMessage.Subject  = "Survey Completed"
objMessage.TextBody = strBody
objMessage.Send
Set objMessage = Nothing


with regards
anders l. borum � [EMAIL PROTECTED]
the sphereworx / monoliner experience
--


---
You are currently subscribed to activeserverpages as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to