Applescript para cambiar la línea de asunto

0

He estado mirando hacia arriba durante los últimos dos días y encontré algunas manzanas que decían cambiar las líneas de asunto. Pero ninguno de ellos parece ser capaz de cambiar / establecer la línea de asunto. ¿Qué piensan ustedes que el error está aquí?

tell application "Mail"
    set theSubjectList to {}
    set themessages to selection as list
    repeat with msg in themessages
        set thisSubject to (subject of msg as string)
        if thisSubject is not in theSubjectList then
            set theSubjectList to theSubjectList & {thisSubject}
        end if
    end repeat

    set theNewSubject to ¬
        (choose from list theSubjectList with prompt ¬
            "Choose the subject of the merged thread…") as string

    if theNewSubject is in theSubjectList then
        repeat with msg in themessages
            set subject of msg to (theNewSubject)
        end repeat
    else
        display dialog "Action cancelled"
    end if
end tell

Recibo el siguiente error

error "Mail got an error: Can’t set subject of message to \"CHANGED SUBJECT LINE\"." number -10006 from subject of message
    
pregunta Harish Prasanna 02.09.2015 - 20:09

1 respuesta

1

La respuesta simple es que "sujeto" es de solo lectura. El diccionario de Apple Applescript muestra:

subject (text, r/o) : The subject of the message

Me encantaría poder combinar mensajes en un hilo, pero no puedo ver cómo cambiar el tema sin exportar y volver a importar mensajes.

    
respondido por el Charles Butcher 02.10.2015 - 19:11

Lea otras preguntas en las etiquetas