On 11/6/2007 2:03 AM, "LazK" <[EMAIL PROTECTED]> wrote:
> Sorry not sure we are talking about the same script. The script I'm using is
> a FM Pro script to create separate emails for each contact - it doesn't rely
> on an applescript at all. Which is why the emails go into the default
> entourage account. I suppose adding a simple applescript twhich sets the
> entourage account is all that is needed?
>
> Larry
Most likely you can add the applescript right into the FM script with
applescript step after sendmail step.
Something like.... (probably not quite right...)
---------------------
tell application "Microsoft Entourage"
set selectedMessages to current messages
-- if there are no messages selected, warn the user and then quit
if selectedMessages is {} then
display dialog "Please select a message first and then run this
script." with icon 1
return
end if
repeat with theMessage in selectedMessages
-- Assume theMsg is a reference to the message
set account of theMessage to POP account "MY_ACCOUNT_NAME"
end repeat
end tell
-------------------
--
Thanks - RevDave
[EMAIL PROTECTED]
[db-lists]
--
To unsubscribe:
<mailto:[EMAIL PROTECTED]>
archives:
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>