Thunderbird 插件如何访问外部数据?

发布于 2024-10-21 03:26:46 字数 217 浏览 1 评论 0原文

Thunderbird 插件如何访问外部数据?

我们公司希望为 Thunderbird 构建一个插件,以便客户服务部门可以根据包含外部动态数据(TB 外部和本地计算机)的 Thunderbird 电子邮件模板向客户发送电子邮件,例如客户编号、订单编号、订单详细信息、金额等等...

这可能吗?安全怎么样?阅读 Mozilla 插件,但那里的信息没有提供足够的细节。

谢谢。

How does a Thunderbird addon access external data?

Our company would like to build an addon to Thunderbird so that the customer service department can send emails to customer based on Thunderbird email templates containing external dynamic data (outside TB and the local computer) such as customer no, order no, order details, amounts, etc...

Is this even possible? How about security? Read up on Mozilla addons but the information there didn't provide enough detail.

Thx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

庆幸我还是我 2024-10-28 03:26:46

以下是一些代码,取自连接到远程内容 https://developer.mozilla.org/en/XUL_School" rel="nofollow">XUL School 教程教程。它适用于 Firefox 和 Thunderbird 扩展。

var url = "http://www.example.com/";
let request = Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"].createInstance(Components.interfaces.nsIXMLHttpRequest);

request.onload = function(aEvent) {
window.alert("Response Text: " + aEvent.target.responseText);
};

request.onerror = function(aEvent) {
window.alert("Error Status: " + aEvent.target.status);
};

request.open("GET", url, true);
request.send(null);

这将异步 XMLHttpRequest 发送到 Web 服务器,并以文本或 XML 格式返回服务器响应。

Here is some code, taken from Connecting to Remote Content in the great XUL School Tutorial tutorial. It works for bith Firefox and Thunderbird extensions.

var url = "http://www.example.com/";
let request = Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"].createInstance(Components.interfaces.nsIXMLHttpRequest);

request.onload = function(aEvent) {
window.alert("Response Text: " + aEvent.target.responseText);
};

request.onerror = function(aEvent) {
window.alert("Error Status: " + aEvent.target.status);
};

request.open("GET", url, true);
request.send(null);

This sends and asynchronous XMLHttpRequest to a web server and gets back the server response in either text or XML format.

若水微香 2024-10-28 03:26:46

FiltaQuilla 有一个操作来启动外部应用程序,向其传递参数,并可能从应用程序获取返回的结果。如果您查看其代码或在其论坛上发布问题,您可能会找到一些有用的信息。祝你好运。

FiltaQuilla has an action to launch an external application, pass parameters to it, and maybe get returned result from the application. If you look into its code or post questions to its forum you may find some helpful information. Good luck with that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文