Puedo recoger una variable (dirección de correo electrónico) desde el portapapeles. ¿Cómo puedo configurarlo para que el destinatario de Correo con Automator?
Respuesta
¿Demasiados anuncios?
Woodstock
Puntos
589
Por desgracia, el Nuevo Mensaje de Correo de acción sólo utiliza variables en el Objeto de campo de texto, por lo que en lugar, usted tendría que usar algo como otra Ejecutar AppleScript acción para crear su nuevo mensaje.
Algo así como:
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