Remove blank lines at the end of Outlook message via Excel VBA

mcomp72

Active Member
Joined
Aug 14, 2016
Messages
275
Office Version
  1. 365
  2. 2019
  3. 2016
  4. 2011
Platform
  1. Windows
  2. MacOS
I have an Excel workbook that creates an email message in Outlook. The text that goes into the body of the email is first written to a Word document, and the text in the Word document is then copied & pasted into the Outlook message. All of this is working great except for one thing. In the Outlook message, there are two blank lines at the bottom of the message. I have been trying to figure out how to remove them, but I have had no luck.

Here's the code I have for creating the Outlook message. I am sending the Word document as an object to this sub.

VBA Code:
Sub EmailFromWordDoc(Doc As Object)

Dim OutApp As Object
Dim OutMsg As Object
Dim editor As Object

[...code that sets some variables...]

Doc.Content.Copy

Set OutApp = CreateObject("Outlook.Application")
Set OutMsg = OutApp.CreateItem(0)

With OutMsg
    Set editor = .GetInspector.WordEditor
    editor.Content.Paste
    .To = EmailAddr
    If BCCStr <> "" Then .BCC = BCCStr
    .Subject = MySubject
    .Attachments.Add PDFName
    .Display
End With

Set OutApp = Nothing
Set OutMsg = Nothing
Set editor = Nothing
 
End Sub

I imagine there must be some code I could put in before the ".Display" line to tell it to remove any blank lines from the bottom of the email. But I have not been able to figure it out, and the online searching I have done so far has not resulted in a solution.

By the way, I don't want the formatting of the email message to change, so I cannot read the body of the message into a string and the rewrite it to the email, because that will change it. The email has very specific formatting that needs to stay as is.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Here's a screenshot of what the end of the email message looks like.

Screenshot (201).png


I would really love for the two blank lines at the end to be gone.
 
Upvote 0

Forum statistics

Threads
1,215,641
Messages
6,125,982
Members
449,276
Latest member
surendra75

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