Open a Mail with run Command and insert from Clipboard

Discussion, questions and support.
Post Reply
asteul
Posts: 2
Joined: Jul 23rd, ’21, 13:54

Post by asteul » Jun 15th, ’22, 06:35

Hi
i want open a new Mail with run command (done) . when Mail is open i want to insert aromatically from clipboard text or picture into Mail textfield
any ideas how i can do it ?

regards Andy
User avatar
Marko
Posts: 1719
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Jun 16th, ’22, 21:14

There is a "Create Mail" macro in Professional Edition.
Or write a simple script:

Code: Select all

to:="to@email.address"
cc:="cc@email.address,cc@email.address"
bcc:=" "
subject:="This is the subject"
Body:= "Hello, Thank you for your interest in our products.%0ABest regards%0AJohn"

Run mailto:%To%?cc=%cc%&bcc=%bcc%&subject=%Subject%&body=%body%
Post Reply