Hi everyone,

I am building a macro to send out mails with specific content.

One portion of the mail content would be in Bulletin Points. Example -

________________________________________
Usage Policy:
Why we do this…
• First point.
• Second point.
• Third point.
Terms & conditions:
• First point.
• Second point.
• Third point.
________________________________________

I couldnt get the right format in the body of the code.
Could someone please help.

My code :

    Dim OutApp As Object
    Dim Itm As Object

    Set OutApp = CreateObject("Outlook.Application")
    Set Itm = OutApp.CreateItem(0)

          With Itm
                .To = "[email protected]"
                .Subject = "Subject"
                .Body = "Txt"   ' (Bulletin Points should go here)
                .Send 
            End With