Create new outgoing message with applescript in Microsoft Outlook

后端 未结 2 907
别那么骄傲
别那么骄傲 2021-01-12 05:28

I\'m trying to create a new outgoing message with Microsoft Outlook 2011 for mac, using AppleScript. The following example worked in 10.6.8:

<
相关标签:
2条回答
  • 2021-01-12 05:39
    tell application "Microsoft Outlook"
        set newMessage to make new outgoing message with properties {subject:"Hooray for automation"}
        make new recipient at newMessage with properties {email address:{name:"Jim Shank", address:"jim.shank@example.com"}}
        send newMessage
    end tell
    

    This way, it will automatically send it.

    0 讨论(0)
  • 2021-01-12 05:55

    Apparently, I'm using a trial version, that has expired. With registered version this script works perfectly. Boo Outlook...I spent on looking into this a couple of hours!

    0 讨论(0)
提交回复
热议问题