Quote Originally Posted by Domenic View Post
Try replacing...

.HTMLBody = "<HTML><BODY><H2><I><P Style='font-family:Arial;font-size:18pt;color:red'>Example <Change font color HERE>Text #1</CHANGE></I></H2></P>"
with

.htmlbody = "<HTML><BODY><H2><I><P Style='font-family:Arial;font-size:18pt;color:red'>Example <span style=""color:rgb(31,73,125);"">Text #1</span></P></I></H2>"
That did the trick! Here's my final code. Now I've got to find a way to add some space between the table columns. I'd think by now I owe someone a lunch!!!
    .HTMLBody = "<HTML><BODY><H2><I><P Style='font-family:Arial;font-size:18pt;color:red'>New Alert"
    .HTMLBody = .HTMLBody & "<Span Style=""Color:RGB(31,73,125);"">TextColor2-On-Same-Line!!!!</SPAN></P></I></H2>"
    .HTMLBody = .HTMLBody & "<TABLE><TR><TD><B>Incident Report Detail:</TD></B><a href=""" & MyLink & _
        TextBox1.Value & """>" & TextBox1.Value & "</a>" & _
        "<TR><TD><B>Status:</TD></TR></B>" & ComboBox1.Text & _
        "<TR><TD><B>Date/Time Reported:</TD></TR></B>" & TextBox2.Text & _
        "<TR><TD><B>Impact Summary:</TD></TR></B>" & TextBox3.Text & _
        "<TR><TD><B>Locations Impacted:</TD></TR></B>" & TextBox4.Text & _
        "<TR><TD><B>Incident Manager:</TD></TR></B>" & TextBox5.Text & _
        "<TR><TD><B>Actions / Progress:</TD></TR></B>" & TextBox6.Text & _
        "<TR><TD><B>Root Cause:</TD></TR></B>" & TextBox7.Text & _
        "</TABLE></BODY></HTML>"
    .Importance = 2