Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
610
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. send.mail(from = "sender@gmail.com",
  2. to = c("recipient1@gmail.com", "Recipient 2 <recipient2@gmail.com>"),
  3. replyTo = c("Reply to someone else <someone.else@gmail.com>")
  4. subject = "Subject of the email",
  5. body = "Body of the email",
  6. smtp = list(host.name = "smtp.gmail.com", port = 465, user.name = "gmail_username", passwd = "password", ssl = TRUE),
  7. authenticate = TRUE,
  8. send = TRUE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement