4 votos

¿Hay alguna forma de añadir todos los destinatarios de un correo electrónico a un grupo/carpeta de contactos de Mail?

En el correo, enviaré correos electrónicos a una lista de unas 50 personas, todas las cuales tienen que estar en mi libreta de direcciones. ¿Hay alguna forma de añadirlos a todos a la vez? Puedo decirle que añada de uno en uno, pero no consigo que haga más que eso.

3voto

TraFoO Puntos 11

Tal vez un AppleScript como éste pueda ayudar. Tenga en cuenta que no soy muy competente en AppleScript, así que estoy seguro de que esto puede ser mejorado, pero nadie ha respondido hasta ahora.

  tell application "Mail"
    set theSelection to selection
    set theMessage to item 1 of theSelection
    set theSubject to subject of theMessage
    tell application "Address Book"
        set theGroup to make new group with properties {name:theSubject}
    end tell
    set theRecipients to to recipients of item 1 of theMessage
    repeat with a from 1 to count theRecipients
        set theRecipient to item a of theRecipients
        tell application "Address Book"
            set theName to name of theRecipient
            tell application "Mail" to set theAddress to address of theRecipient
            set thePerson to make new person with properties {first name:name of theRecipient}
            make new email at end of emails of thePerson with properties {value:theAddress}
            add thePerson to theGroup
        end tell
    end repeat
    set theRecipients to cc recipients of item 1 of theMessage
    repeat with a from 1 to count theRecipients
        set theRecipient to item a of theRecipients
        tell application "Address Book"
            set theName to name of theRecipient
            tell application "Mail" to set theAddress to address of theRecipient
            set thePerson to make new person with properties {first name:name of theRecipient}
            make new email at end of emails of thePerson with properties {value:theAddress}
            add thePerson to theGroup
        end tell
    end repeat
    tell application "Address Book" to save
  end tell

AppleAyuda.com

AppleAyuda es una comunidad de usuarios de los productos de Apple en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X