Top "Rdcomclient" questions

This package provides dynamic (i.e. non-compiled) access to COM objects from within R. It allows R to act as a COM client and invoke methods and access properties in any COM object that implements the IDispatch interface.

How to retrieve Outlook inbox emails using R RDCOMClient?

library(RDCOMClient) ## create outlook object OutApp <- COMCreate("Outlook.Application") I want to retrieve today's email from an Outlook …

r email outlook rdcomclient
Download attachment from an outlook email using R

I receive an email every Sunday with an attachment (a zipped folder). The subject of the email never changes. I …

r rdcomclient
Sending Email Attachement Through Outlook in R with RDCOMClient

I'm Running a daily analysis that spits out a file I would like sent through my outlook Email. The code …

r email outlook rdcomclient