I have a macro that creates an email based on the values inputted by users in both listboxes and textboxes on a userform. However I want to make the values a certain format, e.g. some text red and other text bold.
what code would i add to enable this?
e.g.
With MyItem
.To = "xxx@xxx.com
.Subject = ListBox7.Value
.Body = ListBox1.Value & vbNewLine & _ <----- want to make this listbox value red
TextBox1.Value & vbNewLine & _ <--- want to make this textbox value bold
"Enjoy your day " <--- want to make this plain text value bold
.display
Gracias!
Bookmarks