Displaying 1 result from an estimated 1 matches for "uksmtp".
Did you mean:
smtp
2013 Jun 05
1
Send Mail R and Socket Connections
...e port should be 25.
The code:
/
# E-Mail #
library(sendmailR)
from <- "david at work.com"
to <- "adam at work.com"
subject <- "Send Mail R- Test"
body <- "TESTING TESTING TESTING"
mailControl=list(smtpServer="uksmtp.global.local")
sendmail(from=from,to=to,subject=subject,msg=body,control=mailControl)
/
I receive the below error:
/
function (host = "localhost", port, server = FALSE, blocking = FALSE,
open = "a+", encoding = getOption("encoding"), timeout =
getOption(&...