ews-javascript-api
ews-javascript-api copied to clipboard
EWS API for TypeScript/JavaScript - ported from OfficeDev/ews-managed-api - node, cordova, meteor, Ionic, Electron, Outlook Add-Ins
```js const { WellKnownFolderName, Mailbox, FolderId, EventType, StreamingSubscriptionConnection, ExchangeService, WebCredentials, ExchangeVersion, Uri } = require("ews-javascript-api"); const { getMeetings } = require("../controllers/EWSController"); const streamConnections = []; const setUpdateListner = async (credentials,...
Hello how can i get an email if i have a: -Auth token -ID of mail from outlook I have done this in Java using other lib.  Now i...
I am having an issue while trying to compile from typescript : ``` node_modules/ews-javascript-api/typings/ExchangeWebService.d.ts:3:53 - error TS7016: Could not find a declaration file for module 'fetch'. 'C:/Users /ZRTW9851/Documents/Projets Orange/tmp2/@doe/worker/node_modules/fetch/lib/fetch.js' implicitly...
Hi @gautamsi, some (but not all) of our users report a crash while synchronizing their Office 365 account. We could not reproduce the issue with out test account, but our...
Hey there, Has anyone been able to successfully authenticate to M365? Since they've disabled basic auth, I'm seeing: Invalid message signature: Basic Realm="". The example in the readme.txt that uses...
Hi @gautamsi , I'm using `ews-js-api-browser` in my outlook mail app and I have a requirement to create a new category for an appointment but I cannot find any example....
Hello @gautamsi, I have been using `ews-javascript-api` for a while on Node. To port the code on a browser process, my understanding is that we need to use `ews-js-api-browser` instead....
Randomly I get an error in the library, it is not something I can reproduce because it happens randomly. `app.js: unhandledRejection] Root RejectionTypeError: Cannot read property 'documentElement' of undefined at...
Following code : const message = new EmailMessage(service); message.Subject = "Subject"; message.Body = new MessageBody(BodyType.Text, "Hello"); message.ToRecipients.Add("[email protected]"); message.SendAndSaveCopy(); results e-mail with empty body. The reason is: the program doesn't escapes...
hey man, i'm using this in my react app... let xhr = new XhrApi() .useNtlmAuthentication(process.env.REACT_APP_USER, process.env.REACT_APP_PASS); ConfigurationApi.ConfigureXHR(xhr) EwsLogging.DebugLogEnabled = false; var service = new ExchangeService(ExchangeVersion.Exchange2010); service.Credentials = new ExchangeCredentials(process.env.REACT_APP_USER, process.env.REACT_APP_PASS);...