Я могу собрать переменную (адрес электронной почты) из буфера обмена. Как мне установить его для получателя в Mail с Automator?
2
К сожалению, действие «Новое почтовое сообщение» использует только переменные в текстовом поле «Тема», поэтому вместо этого вам потребуется использовать что-то похожее на другое действие «Запустить AppleScript» для создания нового сообщения.
Что-то вроде:
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