Come impostare un indirizzo e-mail specifico in Automator, da una variabile?

2

Posso raccogliere una variabile (indirizzo email) dagli appunti. Come faccio a impostarlo sul destinatario in Mail with Automator?

    
posta Michael Stent 03.10.2013 - 08:28
fonte

1 risposta

3

Sfortunatamente, l'azione Nuovo messaggio posta utilizza solo variabili nel campo di testo Oggetto, quindi dovresti usare qualcosa come un'altra azione Esegui AppleScript per creare il tuo nuovo messaggio.

Qualcosa come:

on run {input, parameters}



          set theFile to item 1 of input

          set theRecipient to item 2 of input



          tell application "Mail"

    set theMessage to make new outgoing message with properties {visible:true, subject:"My Subject"}

    tell content of theMessage

      make new attachment with properties {file name:theFile} at after last paragraph

    end tell

    tell theMessage

      make new to recipient at end of to recipients with properties {address:theRecipient}

    end tell

          end tell

end run
    
risposta data 03.10.2013 - 10:10
fonte

Leggi altre domande sui tag