On 12/22/00 04:58, Paul Berkowitz wrote:
> On 12/22/00 1:26 AM, "chris stearns" <[EMAIL PROTECTED]> wrote:
>
>> I'm trying to determine the most efficient way of managing several form
>> letters in E.
>> Here's exactly what I want to do:
>>
>> - Keep a copy of a form letter (eventually several) in E.
>> - be able to quickly open, address and edit the form letter, and send it -
>> while SAVING the original form letter as it was - in it's unmodified form.
>> (So I can use it again, obviously.)
>> - Save a copy of the sent form letter to a specified folder.
>
> Closest you can come, until I write a script for this, is: save your
> original as a Signature. It will do what you're looking for, bar one or two
> little things. As soon as I finish the big project I'm on (I'm on the last
> of 8 scripts), I'll look into this if no one beats me to it.
Actually, you can come even closer if you use a "sent" message, and Re-send
it. That leaves your original message untouched (except for adding the
Re-Send flag to it), and you can re-use it as many times as you want.
To set them up initially, either send the message(s) to yourself, or create
an outgoing message and marked the delivery status as sent with AppleScript.
You don't even have to add an email address. Save the message(s) as Draft,
select them, then run this script:
tell application "Microsoft Entourage"
set themsgs to current messages
repeat with themsg in themsgs
if class of themsg is outgoing message then
set delivery status of themsg to sent
end if
end repeat
end tell
You can now move the messages to a folder where you want to store them.
Highlight a message to use it, select "Resend" from the "Message" menu, and
add your recipient(s).
For automatically saving the sent message into a special folder, I think
(although I've not tried it) that if you use a Rule for Outgoing messages
that uses the Folder option, you can select the Folder where the original is
and tell Entourage to save the message into your desired folder.
(Actually, I'm testing that as I send this. We'll see what happens...)
George
--
George Clark - [EMAIL PROTECTED]
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
To search the archives:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>