简体   繁体   中英

Applescript to Paste clipboard text into Messages and send to email

The title says it all really.

Im new to applescripts and I'm hoping someone will be able to explain how to

Paste the clipboard text into Messages and send to a user using a applescript.

Also if you know how to send an image attachment instead of the clipboard text that would be amazing, and I would really appreciate it

set clipContent to (the clipboard as text)

tell application "Mail"
    set myMessage to make new outgoing message at the beginning of outgoing messages with properties {subject:"Clipboard Content"}

    tell myMessage to make new to recipient at beginning of to recipients with properties {address:"first@email.com, second@email.com"}
    set myMessage's content to clipContent
    set myMessage's visible to true
    activate

    -- Uncomment the line below to send the message
    --send myMessage
end tell

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM