Created
August 3, 2017 12:01
-
-
Save crsrusl/67eee8497dd296879fe1a832b3205f0a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Microsoft Outlook" | |
set theMessage to first item of (get current messages) | |
set theSubject to the subject of theMessage | |
set theBody to the plain text content of theMessage | |
set theID to the id of theMessage | |
end tell | |
tell application "Things3" | |
show quick entry panel with properties {name:theSubject, notes:theBody} | |
end tell |
Yeah it’s not supported in the newer outlooks as of yet.
…On 5. Apr 2022, 10:21 +0200, 22Nad ***@***.***>, wrote:
@22Nad commented on this gist.
Hi, I just stumbled upon this. Am not an experienced coder at, but I was trying to install the code @Zenocolo proposed. I get the following respons: "Can’t get subject of missing value". Does anyone know how to get this to work?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
May be supported in 2024/25?
https://www.microsoft.com/cs-cz/microsoft-365/roadmap?filters=&searchterms=88537
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Apparently, the "New Outlook" doesn't support automation via AppleScript. So seems like we need to wait for Microsoft to add this (again) - or maybe someone is aware of a workaround?