【发布时间】:2013-12-25 13:34:05
【问题描述】:
我问了Send email from clipboard without opening mail.app的问题并得到了代码
set a to "myemail@mail.com"
tell application "Mail"
tell (make new outgoing message)
set subject to (the clipboard)
set content to "content"
make new to recipient at end of to recipients with properties {address:a}
send
end tell
end tell
现在我想知道,我怎么能有一个脚本来做同样的事情,但是这样修改它:如果主题是前 10 个单词,并且如果剪贴板超过 10 个单词,那么剪贴板被切断了。例如像这样“你好宝贝这是一个长消息发送... [见注释]”然后整个消息(即“你好宝贝这个是与我的新电子邮件一起发送的长消息,再见。”)在电子邮件的内容中。
【问题讨论】:
标签: macos applescript