Jump to content

How to paste clipboard to MS Outlook mail body?


nend
 Share

Recommended Posts

I've made a little script that opens a MS word document select all and copy it to the clipboard.

Next I open a MS outlook mail and want to paste the clipboard to the body from the mail.

How can I do 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 = " "

$objMail.Display

Link to comment
Share on other sites

  • 5 months later...

$objMail.Body = ClipGet()

So, does the final code look like this one (below)?

----------------------------------------------------------------------------------

$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

----------------------------------------------------------------------------------

Let me know if I got this right COS I just spent 13 hours trying to learn AutoIT. *sighs* How many more hours do I got left now? Anyway, let me know about the code above please.

Edited by Sirwin
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...