Jump to content

Recommended Posts

Posted

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 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.

$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

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
  • Recently Browsing   0 members

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