Oui, AppleScript permet de le faire facilement !
Voici un AppleScript qui peut le faire :
tell application "Mail"
set theSenderList to {}
set theMessages to the selected messages of message viewer 0
repeat with aMessage in theMessages
set end of theSenderList to sender of aMessage
end repeat
set the clipboard to (theSenderList as rich text)
beep
end tell
Il copiera les expéditeurs de courrier dans le presse-papiers comme suit : John Doe <John.Doe@gmail.com>
Le même script sans les noms :
tell application "Mail"
set theSenderList to {}
set theMessages to the selected messages of message viewer 0
repeat with aMessage in theMessages
set end of theSenderList to (extract address from sender of aMessage)
end repeat
set AppleScript's text item delimiters to " "
set the clipboard to (theSenderList as string)
set AppleScript's text item delimiters to ""
beep
end tell
Il ne sort que les adresses avec un space
délimiteur : john.doe@gmail.com jane.doe@gmail.com
Pour le bip, il suffit d'ajouter beep
avant le end tell
(comme je l'ai déjà fait ci-dessus).