有没有可用的Applescript可以通过Mac Office 2011将URL或图像数组作为邮件附件发送?
发布于 2012-03-16 22:57:03
另请参阅:
MS Outlook2011 sp1 V14.1.0更改了apple脚本字典。http://www.officeformachelp.com/2011/04/microsoft-updates-applescript-dictionary-for-outlook-2011-sp1/
另外:
运行send all --强制立即发送收件箱中的邮件
发布于 2010-10-13 21:14:00
鉴于Office 2011非常新,我很惊讶你会在Office提供的示例脚本之外找到现成的代码来使用。This is where the Dictionary comes in; the Dictionary tells you everything that an application responds to, what objects can be manipulated, etc.第一次编写应用程序脚本时,字典始终是您首先查看的内容。
即使对于刚接触Applescript的人来说,你所问的问题似乎也不难理解。
更新:是Entourage 2008的编解码器。我认为v2011不会偏离这一点太多,因为它非常简单:
tell application "Microsoft Entourage"
set newMessage to make new outgoing message with properties {subject:"New Outgoing Message Subject", recipient:"email@domain.com", content:"Message Body", attachment:{pathToFile1, pathToFile2}}
end tell
--> RESULT: A new message appears in the Outbox with the content placedhttps://stackoverflow.com/questions/3922083
复制相似问题