Puedo enviar con éxito un correo electrónico con un archivo adjunto a una única dirección de correo electrónico utilizando el siguiente código:
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
Sin embargo, no puedo averiguar cómo cambiar este código para enviar el correo electrónico a [email protected] y al [email protected]. ¿Alguien sabe cómo lo haría? Soy muy nuevo en AppleScript, ¡así que agradecería mucho la ayuda!