我正在尝试使用AppleScript进行休闲。 1-执行全部重播,包括默认签名。 2-仅获取要在邮件中使用的发件人的名字。 3-发送自定义的按摩像 “尊敬的{发件人的名字}, 订单已按要求完成。
到目前为止,我已经编写了以下代码,但它确实能按预期工作。
当前代码的作用是: 1-更改原始按摩内容(Big NO NO)! 2-打开2条内容相同的电子邮件。
tell application "Microsoft Outlook"
set replyMessage to selection
set replyMessageSubj to subject of replyMessage
set m to item 1 of replyMessage
set theName to name of (get m's sender)
set the content of replyMessage to ("<p>Dear " & theName & ",<br>Order completed as requested. ")
set replyMessage to reply to replyMessage with opening window
reply to replyMessage with opening window and reply to all
open replyMessage