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:
Dim strMessage As String strMessage = "[b]THIS IS BOLD[/b]" & vbCrLf strMessage = strMessage & "[u]THIS IS UNDERLINED[/u]" & vbCrL strMessage = strMessage & "This is normal" & vbCrL 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




Reply With Quote