Feed
 

Sending emails from iWork and other applications

Avatar Michael Corgan
This is for people using Entourage or any email program other than Mail. It works beautifully!

Here's a tip that you may not know about from MacUser:
In Snow Leopard and Leopard too, it doesn’t matter what your default e-mail program is, choosing choosing Mail PDF from the Print dialog box always launches Apple’s Mail and creates a new message. I wrote a simple script to work with Microsoft Entourage. Type this into Apple’s Script Editor (in /Applications/AppleScript):

on open these_items
tell application "Microsoft Entourage"
set theMessage to make new draft window
repeat with theFile in these_items
set theFilePath to theFile as text
make new attachment at theMessage with properties {file:theFilePath}
end repeat
end tell
end open
 

Re: Sending emails from iWork and other applications

Avatar Michael Corgan
Forgot to say that you should then save the script in the Applescript folder, which should be in the Applications folder.
 
Feed