Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/email/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Email 在不打开Thunderbird的情况下从剪贴板发送电子邮件_Email_Autohotkey - Fatal编程技术网

Email 在不打开Thunderbird的情况下从剪贴板发送电子邮件

Email 在不打开Thunderbird的情况下从剪贴板发送电子邮件,email,autohotkey,Email,Autohotkey,我问了一个叫做 现在,我可以使用 set a to "post+UPReuNmbK7pR+414760@checkvist.com" tell application "Mail" tell (make new outgoing message) set subject to (the clipboard) set content to "" make new to recipient at end of to recipients wit

我问了一个叫做

现在,我可以使用

set a to "post+UPReuNmbK7pR+414760@checkvist.com"
tell application "Mail"
    tell (make new outgoing message)
        set subject to (the clipboard)
        set content to ""
        make new to recipient at end of to recipients with properties {address:a}
        send
    end tell
end tell

我想在Windows7中也这样做,最好使用AHK和Mozilla Thunderbird,因为我已经安装了这些程序。但是,由于编程技能差,我无法写这篇文章。

我在lifehacker上找到了答案,在这里