print in outlook

JOEE1979

Active Member
Joined
Dec 18, 2022
Messages
265
Office Version
  1. 365
Platform
  1. Windows
For some reason, my email signature keeps showing up before the body of the email.
Not sure how to fix it.

If you can fix or have a better code, please share

Thank you




Sub Print()
Dim outlook As Object
Dim newEmail As Object
Dim xInspect As Object
Dim pageEditor As Object

Set outlook = CreateObject("Outlook.Application")
Set newEmail = outlook.CreateItem(0)

With newEmail
.To = "Gordon.Mark@metrolinx.com; Glenn.Griffith@metrolinx.com"
.CC = "busfleetsupervisorswest@metrolinx.com; busfleetsupervisorseast@metrolinx.com; BusTechSupportSpecialists@metrolinx.com; BusEngineering@metrolinx.com"
.BCC = ""
.Subject = ActiveSheet.Range("B5").Text + " - Vendor Request - " + ActiveSheet.Range("B4").Text
.display

Set xInspect = newEmail.GetInspector
Set pageEditor = xInspect.WordEditor

ActiveSheet.Range("A1:B25").Copy

pageEditor.Application.Selection.Start = Len(.Body)
pageEditor.Application.Selection.End = pageEditor.Application.Selection.Start
pageEditor.Application.Selection.PasteAndFormat (wdFormatPlainText)
.display
Set pageEditor = Nothing
Set xInspect = Nothing
End With

Set newEmail = Nothing
Set outlook = Nothing

End Sub
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).

Forum statistics

Threads
1,216,100
Messages
6,128,829
Members
449,471
Latest member
lachbee

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