Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Send one email to the senders of multiple Mail messages' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Send one email to the senders of multiple Mail messages
Authored by: pmbuko on May 24, '07 10:03:54AM
This is a great hint, but the creation of a new email to the recipients can be scripted, as well. Just replace the last line ("set the clipboard to thesenderstext") with the following:
set newMessage to make new outgoing message
tell newMessage
     set visible to true
     make new to recipient with properties {address:thesenderstext}
end tell
activate


[ Reply to This | # ]
Send one email to the senders of multiple Mail messages
Authored by: osxpounder on May 24, '07 11:06:36AM

Brilliant, both tip and first comment! Thanks!

I took pmbuko's suggested line and simply added it after the "set clipboard" line, so that the script also puts the addresses on the clipboard. Since I use a clipboard tool [I like Butler and iSnip, both for different reasons], I don't mind loading those addresses to the clipboard. I just wanted to see if it would do it. Great!



[ Reply to This | # ]