strBody = "Hello" & vbCrLf & "This is on a new line"
.Body = strBody
Break your string down with vbCrLf
This is not working i tried this in the codeCode:strBody = "Hello" & vbCrLf & "This is on a new line" .Body = strBody
With OutMail .To = "email@email.com"
.BCC = ""
.Subject = " Report for Report for the last interval " & Range("C9").Value & "."
.HTMLBody = "Hi All, " & vbCrLf & "Please Find Attached the RTM Report for Process for the last interval " & Range("C9").Value & "." & RangetoHTML(rng) & "Regards," & Chr(10) & "name" & Chr(10) & Chr(10)
.Display
.Send
End With