Using the Microsoft365R and blastula packages
We are now going to go over two packages that can be used in conjunction with each other to create emails via Outlook from Microsoft. These packages are Microsoft365R and blastula. Let’s look at them in the following sections.
Microsoft365R
Microsoft365R is an R library that provides an interface to Microsoft 365 (formerly known as Office 365) cloud services. It is built on top of the AzureGraph package, which provides a high-level abstraction for interacting with the Microsoft Graph API. Microsoft365R currently supports the following Microsoft 365 services:
- Teams
- Outlook
- SharePoint Online
- OneDrive
The library provides several top-level client functions for accessing each of these services. For example, the get_personal_onedrive()
function can be used to access your personal OneDrive account, and the get_business_outlook()
function can be used to access your work or school Outlook...