我问了一个名为从剪贴板发送电子邮件而不打开 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,因为我已经安装了这些程序。但是,由于我的编程能力差,我不能写这个。