gpt4 book ai didi

email - 将电子邮件正文传递给 AppleScript

转载 作者:行者123 更新时间:2023-12-04 12:25:59 26 4
gpt4 key购买 nike

我已将 Mail 设置为在收到主题为“AppleScript”的电子邮件时执行 AppleScript,我想知道如何将这封电子邮件的正文传递给脚本以执行。

提前致谢!

最佳答案

消息的正文可以使用 content 确定 my已传递给规则操作的消息的属性。要执行脚本,请使用 run script命令。

以下脚本是如何编写可作为规则操作附加的 AppleScript 的示例,该操作将作为 AppleScript 运行消息正文:

using terms from application "Mail"
on perform mail action with messages theMessages for rule theRule
tell application "Mail"
repeat with theMessage in theMessages
set theBody to content of theMessage as text
my executeScript(theBody)
end repeat
end tell
end perform mail action with messages
end using terms from

on executeScript(theScript)
display alert "Run the following AppleScript?" message theScript buttons {"Cancel", "Run"}
if button returned of result = "Run" then
run script theScript
end if
end executeScript

关于email - 将电子邮件正文传递给 AppleScript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2820524/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com