AppleScript Priorité d'un e-mail

Fermé
ryan_cheppers Messages postés 36 Date d'inscription dimanche 12 mars 2006 Statut Membre Dernière intervention 8 mai 2021 - 7 nov. 2009 à 15:00
ryan_cheppers Messages postés 36 Date d'inscription dimanche 12 mars 2006 Statut Membre Dernière intervention 8 mai 2021 - 7 nov. 2009 à 17:05
Bonjour,

J'aimerais créer un script en AppleScript en fonction de la priorité d'un e-mail reçu sur Mail.app.

Quelle est la commande qu'il faut utiliser ? (if the priority of the mail is "high" then ne marche pas)

Merci d'avance.
A voir également:

1 réponse

ryan_cheppers Messages postés 36 Date d'inscription dimanche 12 mars 2006 Statut Membre Dernière intervention 8 mai 2021 4
7 nov. 2009 à 17:05
J'ai trouvé moi-même:

repeat with mail in theMessages
try
set priHeader to the header "X-Priority" of the mail
set priHeaderStr to the content of priHeader as string
if priHeaderStr contains "1" then
...
end if

on error
return "error"
end try

end repeat
0