Created
March 29, 2019 19:08
-
-
Save MarcinKosinski/08d1f455fd0cf516d9d122bfb14f218e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(mailR) | |
sender <- "[email protected]" | |
recipient <- "[email protected]" | |
send.mail(from = sender, | |
to = recipient, | |
subject = "Subject", | |
body = "Hello World!", | |
smtp = list(host.name = "smtp.gmail.com", port = 465, | |
user.name = "[email protected]", | |
passwd = pwd, | |
ssl = TRUE), | |
authenticate = TRUE, | |
send = TRUE) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment