I am sending an email message via the Shell Command. However I want to make some of the text bold or underlined with other parts regular text.

I have tried the following but it doesn't seem to be working
VB Code:
  1. Dim strMessage As String
  2.  
  3. strMessage = "[b]THIS IS BOLD[/b]" & vbCrLf
  4. strMessage = strMessage & "[u]THIS IS UNDERLINED[/u]" & vbCrL
  5. strMessage = strMessage & "This is normal" & vbCrL
  6.  
  7. blnSuccess = Email(&H0, strTo, "TESTING", strMessage)

However when I try to this technique I just get all the text out instead of the Bold or Underlined works. I have the emailer set to HTML.

Any ideas if this is possible. Thanks