是否可以使用 C# 与 Thunderbird 进行互操作?
这是我不断追求自动化我的工作:
- 公司内的所有邮件都会经过4个不同的邮件地址,来回随机切换(全局共享中附注:请设置“将邮件保留在服务器上”)
- 所有与邮件相关的逻辑都包含在一个漂亮的大文件中Thunderbird 配置文件,被来回复制到新机器;这包括将发票分类到 5 个不同的“文件夹”、发送通知的 VIP 地址列表以及这些客户的 VIP 级别
- 我只需要这些文件夹的内容(无论如何附件)
问题:有没有办法询问Thunderbird 用于 C# 中的附件和列表?或者,可以将 Outlook 设置为与 Thunderbird 同步吗?我从哪里开始阅读?
放弃 Thunderbird 现在不是一个选择,我需要跟上 VIP 列表的变化。
PS:在 Monkey 为我节省了足够的时间来说服人们之后,我将立即建立一个真正的电子邮件服务器。
Here's the latest hurdle in my ongoing quest to automate my job:
- All email in the company goes through 4 different email adresses, switching randomly back and forth (with a note attached in the global share: please set "keep email on server")
- All logic related to email is contained in a nice big Thunderbird profile, which gets copied back and forth to new machines; this includes sorting invoices into 5 different "folders", the list of VIP adresses to send notifications, and the VIP level of those customers
- I only need the contents of those folders (the attachments, anyway)
The question: is there a way to ask Thunderbird for those attachments and lists from C#? Alternatively, can Outlook be set up to synchronize with Thunderbird? Where do I start reading?
Ditching Thunderbird is not an option right now, I need to keep up with changes to the VIP list.
P.S. I will set up a real email server right after Monkey saves me enough time to convince people about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然我没用过,但我想通过XPCOM应该可以。
有关 XPCOM 的更多信息,请访问:
http://xpcomviewer.mozdev.org/
http://kb.mozillazine.org/Development_resources
http://kb.mozillazine.org/Calling_Thunderbird_from_other_programs
希望这对
阿德里亚诺有帮助
Even though I have never used it, I guess it should be possible through XPCOM.
More information about XPCOM here:
http://xpcomviewer.mozdev.org/
http://kb.mozillazine.org/Development_resources
http://kb.mozillazine.org/Calling_Thunderbird_from_other_programs
Hope this helps
Adriano