How to send an email with attachment from R in windows

sendmailR works for me on Windows 7. I referenced http://cran.es.r-project.org/web/packages/sendmailR/sendmailR.pdf smtpServer= info for Outlook 2010 is in File -> Account Settings -> Account Settings -> double click your account -> text in “Server” box library(sendmailR) #set working directory setwd(“C:/workingdirectorypath”) #####send plain email from <- “[email protected]” to <- “[email protected]” subject <- “Email Subject” body <- “Email … Read more