2012年12月,此stackoverflow站点的Mark Hunte通过提供以下AppleScript帮助了其他用户。该脚本会创建一个新的电子邮件消息。并将文件附加到最后。
有人可以帮助我吗?我需要有一个缩短版本的脚本只做一件事:将一个名为“selectedPhoto.jpg”的文件附加到已经打开的电子邮件的末尾。
也就是说,如果我正在创建新电子邮件或回复电子邮件并且已经打开了窗口,我想运行一个脚本,只需将照片附加到该电子邮件的末尾。
我已尝试删除以下脚本的行,但我无法使其工作。
我正在运行OS X 10.8
有人可以帮忙吗?
set theAttachment1 to POSIX file "/Users/USERNAME/Desktop/Desktop--IMAGE/scooter-6.jpg"
tell application "Mail"
set newMessage to make new outgoing message with properties {subject:"subject", content:"the_content" & return & return}
tell newMessage
set visible to false
set sender to "myaddress@btinternet.com"
make new to recipient at end of to recipients with properties {address:"someAddress@btinternet.com"}
make new attachment with properties {file name:theAttachment1} at after the last paragraph
(* change save to send to send*)
save --<<<<---------------- change save to send to send
(* change save to send to send*)
end tell
end tell
答案 0 :(得分:0)
我无法使用tell outgoing message 1 to make new attachment
,但您可以使用UI脚本:
set old to the clipboard as record
set f to "/Library/Desktop Pictures/Antelope Canyon.jpg"
set the clipboard to (read (POSIX file f as alias) as JPEG picture)
activate application "Mail"
tell application "System Events" to keystroke "v" using command down
set the clipboard to old