Hi,
I have a code that automatically generates an email. I need the first line to stand out (be in Bold, Red font, font size 24) while the other lines remain normal (font size 11, not bold and in black). Does anyone have any idea how to make this happen? Below is a sample of my code. As it indicates, i want the first line changed and the rest to be left alone. Any ideas?

With OutMail
        .To = "[email protected]"
        .CC = ""
        .BCC = ""
        .Subject = "Updates"
        .Body = "I WANT THIS LINE TO BE BOLD, FONT SIZE 24 AND TEXT COLOR TO BE RED" & vbCrLf & vbCrLf & vbCrLf & _
        "this is the remainder of the body of the
email. it should be in regular text, font size 11, color black"