Mark as "read" unsent Drafts item

G

Gnarlodious

Is there a way to mark an unsent mail in the "Drafts" folder as already
read"??

-- Gnarlie
 
D

Dave Cortright

Is there a way to mark an unsent mail in the "Drafts" folder as already
read"??

-- Gnarlie

tell application "Microsoft Entourage"
set cm to current messages
repeat with tm in cm
if class of tm is outgoing message then
set delivery status of tm to sent
end if
end repeat
end tell
 
G

Gnarlodious

Entity Dave Cortright spoke thus:
tell application "Microsoft Entourage"
set cm to current messages
repeat with tm in cm
if class of tm is outgoing message then
set delivery status of tm to sent
end if
end repeat
end tell

Thanks Dave, hadn't even considered an Applescript solution.

-- Gnarlie
 
Top