Good Afternoon,
I am able to email info from a range in a sheet from a copy and paste point, but I would like to make the email more readable. I have looked on line, but am having a bit of trouble with this
The code below puts all the information in the email but I would like to space this out by putting a line in between each so say complaint number shows on one line then a line free and so on like :-
A Complaint has been assigned to your reference: " & Me.ComplaintNo.Value
"This is a complaint for : " & Me.ComboBox5.Value
"Please deal ASAP"
Is this possible?
I am able to email info from a range in a sheet from a copy and paste point, but I would like to make the email more readable. I have looked on line, but am having a bit of trouble with this
The code below puts all the information in the email but I would like to space this out by putting a line in between each so say complaint number shows on one line then a line free and so on like :-
A Complaint has been assigned to your reference: " & Me.ComplaintNo.Value
"This is a complaint for : " & Me.ComboBox5.Value
"Please deal ASAP"
Is this possible?
Code:
With Destwb
.SaveAs TempFilePath & TempFileName & FileExtStr, FileFormat:=FileFormatNum
On Error Resume Next
With OutMail
.From = "me"
.To = MyEmail
.CC = ""
.BCC = ""
.Subject = "Notification for your work queue."
.Body = "A Complaint has been assigned to your reference: " & Me.ComplaintNo.Value & Chr(10) & _
"This is a complaint for : " & Me.ComboBox5.Value & Chr(10) & "Revenue: " & Me.ComboBox3.Value & Chr(10) & "Please deal ASAP" & Chr(10) & _
[code/]
thanks in advance
Gavin