I have data in an excel sheet, with row headers and respective values in the columns. I want that to be copied in a tabular format and be pasted in the body of the outlook email along with a few texts. unable to find tabular code for vba. suggest
here is the snippet:
strEmailSubject = ""
StrEmailText = ""
strCc = ""
strContactEmail = ""
With olNewEmail
.To = strContactEmail
'.CC = strCc
.body = StrEmailText
.Subject = strEmailSubject
.display
End With