无需打开Thunderbird即可从剪贴板发送电子邮件

时间:2013-08-31 11:22:18

标签: email autohotkey

我问了一个名为Send email from clipboard without opening mail.app

的问题

现在,我可以使用

执行此操作
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

我想在Windows 7中做同样的事情,最好使用AHK和Mozilla Thunderbird,因为我已经安装了这些程序。但是,由于编程技巧不佳,我不能这样写。

1 个答案:

答案 0 :(得分:0)