You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I scanned the example and some issues about COM, but I can not figure out if this crate can support talking with Outlook using COM.
Specifically, I would like to migrate the following python script to Rust.
The script will act upon any new email received by the Outlook program.
import win32com.client
import pythoncom
class EmailHandler:
def OnNewMailEx(self, receivedItemsIDs):
# RecrivedItemIDs is a collection of mail IDs separated by a ",".
# You know, sometimes more than 1 mail is received at the same moment.
pass
outlook = win32com.client.DispatchWithEvents(
"Outlook.Application", EmailHandler)
The text was updated successfully, but these errors were encountered:
The windows crate is based on the metadata for the Windows API, which does not include Office APIs. If you could source the metadata for the Office APIs, you could use it with the windows crate (#1518) but I don't know whether that's available.
Hi, I scanned the example and some issues about COM, but I can not figure out if this crate can support talking with
Outlook
using COM.Specifically, I would like to migrate the following python script to Rust.
The script will act upon any new email received by the
Outlook
program.The text was updated successfully, but these errors were encountered: