0

I updated R in version 3.6.0. Then I started to have problem with Library RDCOMClient. Does anyone know how to solve problem with R version 3.6.0 and library RDCOMClient? Or does it exist some alternative way how to send emails in R via Outlook?

Installing package into ‘C:/Users/xxxx/Documents/R/win-library/3.6’ (as ‘lib’ is unspecified)

Warning in install.packages : package ‘RDCOMClient’ is not available (for R version 3.6.0)

Community
  • 1
  • 1
M.Pe
  • 1

2 Answers2

0

I've had success with the mailR package in the past. Might be worth looking at.

Noah Olsen
  • 271
  • 1
  • 14
0

I had almost the same problem, try installing it this way :

install.packages("RDCOMClient", repos = "http://www.omegahat.net/R")

Tell me if it worked for you.

Gainz
  • 1,721
  • 9
  • 24
  • 1
    It worked for R version 3.5., but not for version 3.6. – M.Pe May 29 '19 at 14:38
  • What about this way : ``devtools::install_github("omegahat/RDCOMClient")`` – Gainz May 29 '19 at 14:44
  • Also is RDCOMClient the only package giving you an error? – Gainz May 29 '19 at 14:47
  • 1
    No, it didnt work. But I manually downloaded package from this site http://www.omegahat.net/R/bin/windows/contrib/3.5/ (file PACKAGES.gz from folder for R version 3.5.) and it works. – M.Pe Jun 03 '19 at 08:19