Below is the four lines (and there will be others later) where each strDynamicDL(2), strDynamicDL(3), strDynamicDL(10), strDynamicDL(15) then shows up in the Body....and the line of each strDynamicDL in the order of the title number, which is fonted differently, and then the strFullName, which is the full name of each contact, and then, the words or phone number from the specific fields....so I want the strFullName to be the same side and type of font of the other fields, but strFullName needs to be Blue and the others fields are Red.
strDynamicDL2 = strDynamicDL2 & ("Full Name/NickName: ") & strFullName & (": ") & ObjItem.GetInspector.ModifiedFormPages("General").Controls("TextBox10").Text & vbCrLf
If ObjItem.UserProperties("Phone 4 Selected") <> "" Then strDynamicDL3 = strDynamicDL3 & ("Mobile Number: ") & strFullName & (": ") & strMobileNumber & vbCrLf
If ObjItem.GetInspector.ModifiedFormPages("General").Controls("Company").Text <> "" Then strDynamicDL10 = strDynamicDL10 & ("Company Name: ") & strFullName & (": ") & strCompanyName & vbCrLf
If ObjItem.GetInspector.ModifiedFormPages("General").Controls("ComboBox9").Text <> "" Then strDynamicDL15 = strDynamicDL15 & ("Last Status: ") & strFullName & (": ") & strLastStatus & vbCrLf