Posso raccogliere una variabile (indirizzo email) dagli appunti. Come faccio a impostarlo sul destinatario in Mail with Automator?
Posso raccogliere una variabile (indirizzo email) dagli appunti. Come faccio a impostarlo sul destinatario in Mail with Automator?
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
Leggi altre domande sui tag automator