Come si fa ad aggiungere automaticamente il primo nome del destinatario ai nuovi messaggi in Mail.app?

0

Vorrei che i nuovi messaggi che creo, comprese le risposte ai messaggi ricevuti, ottengano automaticamente un " Hi <name>, " inserito nella prima riga. <name> dovrebbe essere il primo nome del primo destinatario.

Come posso creare una tale automazione?

    
posta GJ. 22.10.2014 - 13:51
fonte

1 risposta

1

È possibile implementare una stampa unione usando AppleScript. Gianugo Rabellino ha condiviso il suo AppleScript iniziale per la creazione di tali messaggi in Unione di poesie in Apple Mail .

I commenti sul post di Rabellino suggeriscono miglioramenti e altri approcci.

tell application "Mail" to set allAccounts to name of every account
choose from list allAccounts with title "Choose the Mail account to use..."
set theAccount to result as string

set subjectDialog to display dialog ¬
    "Enter the subject of the email to send" default answer "no subject"
set theSubject to text returned of subjectDialog

set sendOrPreview to the button returned of ¬
    (display dialog ¬
        "Send the messages right away or preview and send manually?" with title ¬
        "Send or Preview?" with icon caution ¬
        buttons {"Preview", "Send"} ¬
        default button 1)

set theText to (choose file with prompt "Pick a text file containing the email text")

set theContent to read theText

tell application "Finder"
    set addresses to paragraphs of ¬
        (read (choose file with prompt "Pick a text file containing email addresses, one by line"))
end tell

tell application "Mail"
    activate
    set activeAccount to account theAccount
    repeat with i from 1 to (the length of addresses)
        set newMessage to make new outgoing message ¬
            with properties {account:activeAccount, subject:theSubject, content:theContent}
        tell newMessage
            set sender to ¬
                ((full name of activeAccount & " < " & email addresses of activeAccount as string) & ">")
            make new to recipient at end of to recipients ¬
                with properties {address:(a reference to item i of addresses)}
            set visible to true
        end tell
        if sendOrPreview is equal to "Send" then
            send newMessage
        end if
    end repeat
end tell
    
risposta data 22.10.2014 - 14:21
fonte

Leggi altre domande sui tag