Je suis capable d'envoyer avec succès un email avec une pièce jointe à une seule adresse email en utilisant le code ci-dessous :
on run argv
set theSubject to (item 1 of argv)
set theAttachmentFile to (item 2 of argv)
tell application "Mail"
set theAddress to "recipient1@domain.com" -- the receiver
set theSignatureName to "Sig" -- the signature name
set msg to make new outgoing message with properties {subject:theSubject, visible:true}
tell msg to make new to recipient at end of every to recipient with properties {address:theAddress}
tell msg to make new attachment with properties {file name:theAttachmentFile as alias}
set message signature of msg to signature theSignatureName
send msg
end tell
end run
Cependant, je n'arrive pas à trouver comment modifier ce code pour envoyer l'e-mail à la fois à recipient1@domain.com et à recipient2@domain.com. Quelqu'un sait-il comment s'y prendre ? Je suis très novice en matière d'AppleScript, alors j'apprécierais grandement votre aide !