Title: Re: Bcc email addresses in a folder
On 6/4/05 6:19 PM, "Scott Haneda" <[EMAIL PROTECTED]> wrote:
> I have a set of about 50 emails in a folder, I need to send a single email
> to all of those people, any suggestions?
To all of which people? You've just referred to 50 emails, not contacts or anything. Do you mean to the sender of those messages?
By a script, of course. That's the sort of ting scripts are for (at least until the day that you could drag the emails to a group).
tell application "Microsoft Entourage"
--set theMsgs to every message of folder "Whatever" -- or:
set theMsgs to current messages -- if selected
set g to make new group with properties {name:"Convenience", show only name in messages:true}
repeat with theMsg in theMsgs
set {dName, eAddress} to {display name, address} of theMsg's sender
if dName ≠ "" then
set newMember to dName & " <" & eAddress & ">"
else
set newMember to eAddress
end if
make new group entry at g with properties {content:newMember}
end repeat
make new draft window with properties {to recipients:(get name of g)}
end tell
--
Paul Berkowitz
MVP MacOffice
Entourage FAQ Page: <http://www.entourage.mvps.org/faq/index.html>
AppleScripts for Entourage: <http://macscripter.net/scriptbuilders/>
PLEASE always state which version of Microsoft Office you are using - **2004**, X or 2001. It's often impossible to answer your questions otherwise.
- Bcc email addresses in a folder Scott Haneda
- Re: Bcc email addresses in a folder Paul Berkowitz
