2013-08-31 76 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 ,因爲我已經安裝了這些程序。但是,由於編程能力差,我不能寫這個。

回答

相關問題