Email help

DaveUK

Board Regular
Joined
Jan 24, 2005
Messages
245
I am using this code which was aquired from this forum.

Code:
Sub SendAWONEmail()

With Application
.ScreenUpdating = False
.Calculation = xlCalculationManual
End With

Dim objol As New Outlook.Application
Dim objmail As MailItem
Set objol = New Outlook.Application
Set objmail = objol.CreateItem(olMailItem)
With objmail
.To = "someone@somewhere.co.uk"
.Subject = "ELECTRIC NEW WORK ORDER No: " & WorkOrderNumber
.Body = "Please create a notice for Work Order Number " & WorkOrderNumber
.NoAging = True
'.Attachments.Add ("C:\ELECTRIC\ELECTRIC DATA.xls")
.Display
End With
Set objmail = Nothing
Set objol = Nothing
SendKeys "%{s}", True

With Application
.ScreenUpdating = True
.Calculation = xlCalculationAutomatic
End With

End Sub

But,

I want to write more than 1 line in the body of the Email.

Using the above code please could someone tell me how i can add more lines of text in the body of the Email.

TIA
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Something like:

.Body = "Please create a notice for Work Order Number " & WorkOrderNumber & vbCrLf & "more text"

Like that?
 
Upvote 0
I prefer

Code:
Dim subj as string
subj = "blah blah blah" & VbCrLf
subj = subj & "foo foo foo"
.body = subj

btw VbCrLf is the command for new line
 
Upvote 0

Forum statistics

Threads
1,215,029
Messages
6,122,757
Members
449,094
Latest member
dsharae57

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top