I want to create an Applescript that when clicked on, replies a selected mail and adds a specific Message as the content:
This part is working:
tell application "Microsoft Outlook"
set replyMessage to selection
set replyMessageSubj to subject of replyMessage
reply to replyMessage with opening window
end tell
But when I write this:
tell application "Microsoft Outlook"
set replyMessage to selection
set replyMessageSubj to subject of replyMessage
reply to replyMessage with opening window
set content of replyMessage to "Hello"
end tell
The content of the original message that I wanted to reply to is replaced by that "Hello". I haven't been able to find one single example to put me in the right direction.
I took the reply part from another topic, but there isn't one that mentions the content with this format, in other formats I have been able to add the content, but not the reply part.
Thanks for the help.