Skip to content
Prev 69416 / 398513 Next

Does R have a command for sending emails?

Is there a way to have an R program send an email?

Something like this:

address <- 'abc at d.com'
text <- 'This is the email body'
send.email(address, text)

Thanks.

FS