Bonjour,
Essai avec ça.
Pense à remplacer : "adresse_destinataire@free.fr" par la bonne adresse
remplacer "Sujet" par l'objet
remplacer "Contenu" par le texte de ton mail
[CODE]-- envoi mail avec outlook et ajoute la pièce jointe
set PJ1 to choose file with prompt "Sélectionner le fichier à envoyer"
tell application "Microsoft Outlook"
activate
set newMessage to make new outgoing message with properties {subject:"Sujet", content:"Contenu"}
tell newMessage
set toaddresslist to {"adresse_destinataire@free.fr"}
repeat with i from 1 to count toaddresslist
make new to recipient at end of to recipients with properties {email address:{address:item i of toaddresslist}}
end repeat
set attachmentlist to {PJ1}
make new attachment at end of attachments with properties {file:attachmentlist}
end tell
send newMessage
end tell[/CODE]