J
Jon Connell
So this script:
tell application "Microsoft Entourage"
set selectedMessages to current messages
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
download theMessage
end repeat
end tell
will download all the selected messages from my IMAP account. I figure
it might be useful to have a list of addresses that I automatically
download mail from via a rule (for newsletters and the like). But how do
I then also download pictures for just the selected message?
Jon
tell application "Microsoft Entourage"
set selectedMessages to current messages
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
download theMessage
end repeat
end tell
will download all the selected messages from my IMAP account. I figure
it might be useful to have a list of addresses that I automatically
download mail from via a rule (for newsletters and the like). But how do
I then also download pictures for just the selected message?
Jon