Changing the subject of a message
Changing the subject of a message
- Subject: Changing the subject of a message
- From: Michelle Steiner <email@hidden>
- Date: Sat, 1 Dec 2007 18:09:49 -0700
The inability to change the subject of a received message seems to be
the major complaint of Eudora users who have switched to mail.app.
Here is an applescript that will let you do this.
Select the message whose subject you want to change and then run this
script.
tell application "Mail"
set theMessage to item 1 of (the selection as list)
set the subject of theMessage to my getNewSubject(subject of theMessage)
end tell
on getNewSubject(OldSubject)
return text returned of (display dialog "Enter the new subject of the
message and press Enter." default answer OldSubject)
end getNewSubject
However, after the script runs, you will have to click out of the
message folder and then back into it in order to see the change.
-- Michelle
--
The invasion of Iraq is "a catastrophic success"
-- G.W. Bush, August 29, 2004
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden