解决方法:
1.下载安装Sparrow(或Sparrow Lite),然后启动Automator。
2. 在选取文稿类型里选择“服务”。
3. 在“服务”收到选定这项的下拉菜单里选“文件或文件夹”,“位于”选择“任何应用程序”。
4. 在左侧的操作面板中找到“运行Applescript.”一项,双击打开脚本执行窗口, 将以下脚本粘贴上:
on run {input, parameters}
tell application “Sparrow”
activate
set theMessage to make new outgoing message
tell theMessage
repeat with ii in input
make new mail attachment with properties {filename:ii as alias}
end repeat
compose
end tell
end tell
end run
最后,保存这个脚本,起个名字,这个功能就会出现在服务列表中。
以上就是使用Sparrow将文件一键化为附件发出的方法了,有需要或者是有兴趣的用户,就在自己的电脑上尝试操作一下吧。