2013-08-31 266 views
0

我问了一个名为Send email from clipboard without opening mail.app发送从剪贴板电子邮件,而无需打开雷鸟

现在的问题,我可以做到这一点使用

set a to "[email protected]" 
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 ,因为我已经安装了这些程序。但是,由于编程能力差,我不能写这个。

回答

相关问题