Adding bullet points to body of email using call and vba

Question : Adding bullet points to body of email using call and vba

 I have this call that works.

SendOutlookMail “[email protected]”, “”, “Subject”, “Body Text”, “c:fullpathtoattachment.xls”

However, I am not sure how to add bullets to the “Body text” can anyone help me on this. I would like to add bullet points to the email along with text using vba in excel..


Solution: Adding bullet points to body of email using call and vba

Hi,
Assuming that you have figured out how to make your one-liner work, just replace “Body Text” with a string variable for your text:

Sub SendMeMail()
Dim BodyText As String
BodyText = “This is a summary” & Chr(10) & _
Chr(149) & “First point” & Chr(10) & _
Chr(149) & “Second point” & Chr(10) & _
Chr(149) & “Last point”
SendOutlookMail “[email protected]”, “”, “Subject”, BodyText, “c:fullpathtoattachment.xls”
End Sub

Cheers!