Sono in grado di inviare con successo un'e-mail con un allegato a un singolo indirizzo email utilizzando il seguente codice:
on run argv
set theSubject to (item 1 of argv)
set theAttachmentFile to (item 2 of argv)
tell application "Mail"
set theAddress to "[email protected]" -- 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
Tuttavia, non riesco a capire come modificare questo codice per inviare l'e-mail a [email protected] e [email protected]. Qualcuno sa come farei a farlo? Sono molto nuovo ad AppleScript, quindi apprezzerei molto l'aiuto!