我想将动态日期添加到我的 Alfred 工作流程中,但无法弄清楚。这是我到目前为止所得到的:
tell application "Mail"
activate
make new outgoing message with properties {subject:"some subject", content:"some content" & return & return}
end tell
我想在主题中包含动态日期,并在内容中包含 Alfred 片段,但它们未被识别。例如:
tell application "Mail"
activate
make new outgoing message with properties {subject:"{date} Call Follow Up", content:"some content" & return & return}
end tell
那有意义吗?任何帮助将非常感激!