Hey All,
I have a piece of code that selects a range in my workbook and then email this out. For some reason, I can't seem to insert paragraph breaks. I have attached the code in question:
With OutMail
.to = sTo
.CC = ""
.BCC = ""
.Subject = "KPIs" & Worksheets("Summary_Page").Range("D18")
.HTMLBody = "All, " & "Please find the latest KPIs below: " & RangetoHTML(rng) & "Thank You" .Display
Application.Wait (Now + TimeValue("0:00:02"))
Application.SendKeys "%s"
I would like to add a new paragraph line after "All" and also after "Please find latest..."
Your help is greatly appreciated.
Thanks,
I have a piece of code that selects a range in my workbook and then email this out. For some reason, I can't seem to insert paragraph breaks. I have attached the code in question:
With OutMail
.to = sTo
.CC = ""
.BCC = ""
.Subject = "KPIs" & Worksheets("Summary_Page").Range("D18")
.HTMLBody = "All, " & "Please find the latest KPIs below: " & RangetoHTML(rng) & "Thank You" .Display
Application.Wait (Now + TimeValue("0:00:02"))
Application.SendKeys "%s"
I would like to add a new paragraph line after "All" and also after "Please find latest..."
Your help is greatly appreciated.
Thanks,