Hi, I have this code that I use to create a standard mail. However, I am struggling to indent the bullet points. Does anybody know how to do that? It is the condition A and B that I want to indent.
VBA Code:
Sub Send_Mail()
Dim xOutApp As Object
Dim xOutMail As Object
Dim xOutMsg As String
On Error Resume Next
Set xOutApp = CreateObject("Outlook.Application")
Set xOutMail = xOutApp.CreateItem(0)
xOutMsg = "Hi,<br /><br /> Please view the below renewal conditions.<br /><br />" & _
"<b>Product X</b><br/> General terms is x % increase. In addition: <br />" & _
"<li> Condition A: X% </li> <br />" & _
"<li> Condition B: X% </li> <br />"
With xOutMail
'.From = ""
.To = ""
.CC = ""
.BCC = ""
.Subject = ""
.HTMLBody = xOutMsg
.Display
End With
Set xOutMail = Nothing
Set xOutApp = Nothing
End Sub