Jump to content

Insert a formated MS word document into MS outlook mail body


nend
 Share

Recommended Posts

I've made a script that copy a word document to the clipboard and paste it into outlook mail body.

With this script it loose al the layout (tabs, fonts and al other) from the word document.

I've found on the internet that you can do this with "pasteandformat" but I don't have any idea how to do this.

Is there anyone knows how I can insert a formatted MS word document into MS outlook mail body????

Im really stuck with this, please help!

$outlook = ObjCreate("Outlook.Application")

$Word = ObjCreate("Word.Application")

$Word.Documents.Open(@scriptdir & "\test.DOC")

$Word.Selection.WholeStory

$Word.Selection.Copy

$objMail = $Outlook.Application.CreateItem(0)

$objMail.Recipients.add("test@test.nl")

$objMail.Subject = "Test"

$objMail.Body = ClipGet()

$objMail.Display

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...