Hi,
I am sending emails from Excel using VBA. I have created the mail and it sends fine, but I want to put more than one line in the body of the email.
So far I have the following to define the email. Which will add one line of text to the body, however I want to insert a blank line and then another line of text after the first
With OutMail
.To = ActiveCell.Offset(0, 8).Value
.Subject = ActiveCell.Offset(0, 10).Value
.body = ActiveCell.Offset(0, 9)
.Send 'Or use Display
End With
Any help greatly appreciated
Nick
Bookmarks