On 10/29/00 10:53, R. Scott Ohlgren wrote:
> What is the best way to keep emails as Boilerplate emails?
>
> I have a dozen emails that are boilerplate-type stationeries, templates like
> "Thanks for your order. Here's directions", etc.
>
> What is the best way to store these so that they remain as un-assigned
> emails that stay in the folder they were placed in?
>
> So far, I've kept them all in the "Drafts" folder, opened the one I need,
> and then "Forward" it to the new recipient. This sort of works, but there's
> all the text that explains that it's a forwarded piece of mail.
>
> Any other ideas? I hope this makes sense.
Here's one option: start a new message, and type in the text you want for
the subject/body as appropriate. Don't put in any addresses. Save the
message as draft (you're only option, really). Create as many such messages
as you need, then select them and run this AppleScript:
tell application "Microsoft Entourage"
set msglist to current messages
repeat with themsg in msglist
if class of themsg is outgoing message then
set delivery status of themsg to sent
end if
end repeat
end tell
To use a message, select it and select Resend from the Message menu, add
your recipient and send it normally.
George
--
George Clark - [EMAIL PROTECTED]
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
To search the archives:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>