sus...@gmail.com
unread,Aug 15, 2016, 4:00:09 PM8/15/16You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hi friends,
In Firefox we use the gBrowser.selectedBrowser.messageManager to be capable of using the sendAsyncMessage function to communicate to a proper script.
How do we get a messageManager in Thunderbird? The window.messageManager supports only nsIMessageBroadcaster, so there's no way to send a message to specific script using sendAsyncManager.
My solution is:
var emailMessageManager = window.messageManager.getChildAt(0);
emailMessageManager.sendAsyncMessage(...)
I wonder if there is a proper way to obtain this messageManager.