Mail Addin's are a feature of Exchange and Office365 introduced first in 2013 as a way of having a unified Client App experience across Outlook, OWA and now the Outlook mobile clients (vs the old Com based addin which still works but in Outlook only). One of the new features in MailApps in Office365 is the ability to now use the Outlook REST endpoint (EWS has been available in Mail Addin's since release). While both EWS and REST are functionality the same (eg they both are Mailbox data API's) in terms of their use in a Mail Addin the REST API offers a faster and easier development experience over EWS. Primarily because in EWS you have to build your SOAP posts in XML and parse their results which if you have worked with XML in Javascript is never a trivial thing. REST on the other hand because your requests and responses are using JSON (JavaScript Object Notation) from a integration perspective this is easier to handle and debug in JavaScript which is the primary language yo...
Pushing the Envelope in Messaging and Office 365 Development