0 votos

Applescript para añadir el remitente del mensaje a un grupo específico en los contactos

Estoy tratando de configurar un Applescript para añadir el remitente de un mensaje seleccionado en Apple Mail a un grupo específico en la aplicación Contactos. Al reconfigurar el código proporcionado en esta respuesta He elaborado lo siguiente, pero no funciona. Alguna sugerencia sobre lo que estoy haciendo mal?

    tell application "Mail"
    set theMessage to selection
    tell application "Contacts"
        set theGroup to "_TEST"
    end tell
    set theSender to sender of theMessage
    tell application "Contacts"
        set theName to name of theSender
        set thePerson to make new person with properties {first name:name of theSender}
        add thePerson to theGroup
    end tell
    tell application "Contacts" to save
    end tell

3voto

Ged Byrne Puntos 481

Pruebe esto, se creará un contacto con nombre, apellido y dirección de correo electrónico adecuados:

tell application "Mail"
set theMessages to selection
if theMessages is not {} then -- check empty list
    set theSenderName to extract name from sender of item 1 of theMessages
    set nameArray to my split(theSenderName, " ")
    set theFirstName to item 1 of nameArray
    set theLastName to last item of nameArray
    set theEmail to extract address from sender of item 1 of theMessages

    tell application "Contacts"
        set theGroup to group "_TEST"
        set thePerson to make new person with properties {first name:theFirstName, last name:theLastName}
        make new email at end of emails of thePerson with properties {label:"Work", value:theEmail}
        add thePerson to theGroup
        save
    end tell
    end if
end tell

on split(theString, theDelimiter)
    set oldDelimiters to AppleScript's text item delimiters
    set AppleScript's text item delimiters to theDelimiter
    set theArray to every text item of theString
    set AppleScript's text item delimiters to oldDelimiters
    return theArray
end split

Hubo algunos problemas con su intento original, aquí es cómo trabajé alrededor de ellos.

  • Para empezar, selection te da una lista de elementos (aunque sólo sea una lista de uno), así que tienes que elegir el primer elemento de la selección.
  • En el correo, sender te da una cadena no muy útil con el nombre y el correo electrónico combinados. extract name from y extract address from te dan cuerdas útiles.
  • La cadena del nombre es el nombre completo, pero Contacts.app espera que se separen el nombre y el apellido, así que divido esa cadena (utilizando una práctica función que se encuentra aquí ) para hacer una conjetura decente sobre los nombres y apellidos. Esto puede dar resultados inesperados de nombres con formatos extraños en los correos electrónicos.

Si tienes algún problema con éste, házmelo saber y veré si puedo solucionarlo. En el futuro, puede ser útil ejecutar los scripts en el Editor de AppleScript, y comprobar el Registro de Eventos para obtener detalles sobre lo que está fallando (los mensajes de error son útiles, aunque sólo sea para poner en Google o dar a otros un punto de partida para resolver su problema).

1voto

san Puntos 81

Tengo una versión más extendida de esta idea que presenta una lista de grupos y le permite seleccionar de ella; también maneja mensajes múltiples. Puedes añadir el remitente de varios mensajes diferentes a un solo grupo, o puedes añadir uno o más remitentes a varios grupos.

Mi script utiliza un atajo de teclado para añadir el remitente a sus contactos: Cmd-Mayúsculas-Y (ejecutado por el script, ¡pero seguro que no sabías que había un atajo de teclado que hacía esto! Está en el menú de Mensajes cuando se selecciona un mensaje).

tell application "Mail" to set theSelection to selection
  if theSelection is {} then return beep 2
  if length of theSelection = 1 then
    set thePrompt to "Select the group(s) to which to add the sender of the selected message."
  else
    set thePrompt to "Select the group(s) to which to add the senders of the selected messages."
  end if
tell application "Contacts" to set theList to name of groups
set R to choose from list theList with prompt thePrompt with multiple selections allowed
if R is false then return

tell application "Mail"
    activate
    set theSenders to {}
    repeat with thisMessage in theSelection
        set theSender to extract name from sender of thisMessage
        copy theSender to the end of theSenders
    end repeat
    tell application "System Events" to keystroke "y" using {shift down, command down}
end tell

tell application "Contacts"
    activate
    repeat with thisSender in theSenders
        delay 0.1
        set thePersons to (people whose value of emails contains (thisSender as text))
        if (count thePersons) = 1 then
            repeat with theGroupName in items of R
                add (item 1 of thePersons) to group theGroupName
            end repeat
        else
            repeat with theGroupName in items of R
                repeat with thisPerson in thePersons
                    add thisPerson to group theGroupName
                end repeat
            end repeat
        end if
    end repeat
    save
    set selected of group theGroupName to true
    tell application "System Events" to keystroke "0" using {command down}
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