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
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.
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:
- AppleScript Priorité d'un e-mail
- Publipostage mail - Accueil - Word
- É - Guide
- Windows live mail - Télécharger - Mail
- Adresse e-mail oubliée ? - Guide
- Creer un compte mail - Guide
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
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
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