Greasemonkey 提示 outlook
Greasemonkey to prompt outlook
我有一个正在为我的办公室构建的新脚本,其中有一个 greasemonkey 按钮,除了提示输入特定错误编号外,还需要打开 outlook 并将消息发送到特定地址,并在主题行...
任何想法我都挖掘出来了
代码:
addButton(f_l, 'Error number', function() {
url = prompt("Please provide the full error number","");
surround('<a href="mailto: bob@test.com?&subject=Error ' + url + ' Raised&"></a>','');
});
它将文本输入到页面的框中,但不会创建新电子邮件。
How to automate Outlook from another program 文章介绍了从其他应用程序自动化 Outlook 所需的所有步骤。
另见 How To: Create and send an Outlook message programmatically。
我有一个正在为我的办公室构建的新脚本,其中有一个 greasemonkey 按钮,除了提示输入特定错误编号外,还需要打开 outlook 并将消息发送到特定地址,并在主题行...
任何想法我都挖掘出来了
代码:
addButton(f_l, 'Error number', function() {
url = prompt("Please provide the full error number","");
surround('<a href="mailto: bob@test.com?&subject=Error ' + url + ' Raised&"></a>','');
});
它将文本输入到页面的框中,但不会创建新电子邮件。
How to automate Outlook from another program 文章介绍了从其他应用程序自动化 Outlook 所需的所有步骤。
另见 How To: Create and send an Outlook message programmatically。