web-dev-qa-db-ja.com

WindowsでsendmailRを使用する

次のコードを使用して、WindowsでsendmailRを実行しようとしています。

## Not run: 
from <- "<[email protected]>" # sprintf("<sendmailR@\\%s>", Sys.info()[4])
to <- "<[email protected]>"
subject <- "Hello from R"
body <- list("It works!", mime_part(iris))
sendmail(from, to, subject, body,
         control=list(smtpServer="ASPMX.L.GOOGLE.COM."))

そして、次のエラーが発生します。

Error in socketConnection(Host = server, port = port, blocking = TRUE) : 
  cannot open the connection
In addition: Warning message:
In socketConnection(Host = server, port = port, blocking = TRUE) :
  smtp.gmail.com [email protected]:statisfun:25 cannot be opened

ここでの答え Linuxのソリューションを提供し、Windowsユーザーへのアドバイスをいただければ幸いです。

ありがとう。

20
Tal Galili

新しいmailRパッケージを試してみることができます: http://cran.r-project.org/web/packages/mailR/index.html

その後、次の呼び出しが機能するはずです。

send.mail(from = "[email protected]",
          to = "[email protected]",
          subject = "Subject of the email",
          body = "Body of the email",
          smtp = list(Host.name = "smtp.gmail.com", port = 465, user.name = "tal.galili", passwd = "PASSWORD", ssl = TRUE),
          authenticate = TRUE,
          send = TRUE)
7
Rahul Premraj

以前は、これらの回線を使用してR経由でメールを送信していました。

あなたのメールアドレスが[email protected]ウィンドウOSを使用する(私のオペレーティングシステム)

library(sendmailR)

# 1 case
from <- sprintf("<sendmailR@%s>", Sys.info()[4]) 
to <- "<[email protected]>" 
subject <- "Hello from R" 
msg <- "my first email" 
sendmail(from, to, subject, msg,control=list(smtpServer="ASPMX.L.GOOGLE.COM")) 

# 2 case
from <- sprintf("<[email protected]>", Sys.info()[4]) 
to <- "<[email protected]>" 
subject <- "Hello from R" 
msg <- "my first email" 
sendmail(from, to, subject, msg,control=list(smtpServer="ASPMX.L.GOOGLE.COM")) 
4
Gianni Spear

SendmailRが認証に失敗するたびに、あまり役に立たないメッセージが表示されます。

Error in if (code == lcode) { : argument is of length zero

これには、サーバー側の理由など、さまざまな理由が考えられます。私の場合、IPをサーバーのホワイトリストに登録する必要がありました。 @ alko989は sendemailRを使用した問題authentication ... is not supported by sendmailR、およびsendmailRの2015年2月20日の公開の時点で https://cran.r-project.org/web/packages/sendmailR/sendmailR.pdf 、唯一の制御パラメーターはsmtpServerです。 、smtpPortverboseなので、ユーザー、パスワード、ssl、tlsなどには何もありません。今日のメールサーバーは、過去のメールサーバーよりもはるかに安全である傾向があるため、sendmailRの重大な制限です。

1
woodvi

SendmailRを使用する代わりに、これを試すことができます。

VBスクリプトを一緒に解析し(例: http://www.paulsadowski.com/wsh/cdo.htm を参照)、シェルを介して呼び出します。

これは次のようになります。

SendMail <- function(from="[email protected]",to="[email protected]",text="Hallo",subject="Sag Hallo",smtp="smtp.my.server.de",user="me.myself.and.i",pw="123"){
require(stringr)
part1 <- "Const cdoSendUsingPickup = 1 'Send message using the local SMTP service pickup directory. 
Const cdoSendUsingPort = 2 'Send the message using the network (SMTP over the network). 
Const cdoAnonymous = 0 'Do not authenticate
Const cdoBasic = 1 'basic (clear-text) authentication 
Const cdoNTLM = 2 'NTLM "

part2 <- paste(paste("Set objMessage = CreateObject(",'"',"CDO.Message",'"',")" ,sep=""),
paste("objMessage.Subject = ",'"',subject,'"',sep=""),
paste("objMessage.From = ",'"',from,'"',sep=""),
paste("objMessage.To = ",'"',to,'"',sep=""),
paste("objMessage.TextBody = ",'"',text,'"',sep=""),
sep="\n")

part3 <- paste(
"'==This section provides the configuration information for the remote SMTP server. 

objMessage.Configuration.Fields.Item _ 
(\"http://schemas.Microsoft.com/cdo/configuration/sendusing\") = 2

'Name or IP of Remote SMTP Server 
objMessage.Configuration.Fields.Item _ 
(\"http://schemas.Microsoft.com/cdo/configuration/smtpserver\") = ",'"',smtp,'"'," 

'Type of authentication, NONE, Basic (Base64 encoded), NTLM 
objMessage.Configuration.Fields.Item _ 
(\"http://schemas.Microsoft.com/cdo/configuration/smtpauthenticate\") = cdoBasic 

'Your UserID on the SMTP server 
objMessage.Configuration.Fields.Item _ 
(\"http://schemas.Microsoft.com/cdo/configuration/sendusername\") = ",'"',user,'"'," 

'Your password on the SMTP server 
objMessage.Configuration.Fields.Item _ 
(\"http://schemas.Microsoft.com/cdo/configuration/sendpassword\") = ",'"',pw,'"', "

'Server port (typically 25) 
objMessage.Configuration.Fields.Item _ 
(\"http://schemas.Microsoft.com/cdo/configuration/smtpserverport\") = 25 

'Use SSL for the connection (False or True) 
objMessage.Configuration.Fields.Item _ 
(\"http://schemas.Microsoft.com/cdo/configuration/smtpusessl\") = False 

'Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server) 
objMessage.Configuration.Fields.Item _ 
(\"http://schemas.Microsoft.com/cdo/configuration/smtpconnectiontimeout\") = 60 
objMessage.Configuration.Fields.Update

'==End remote SMTP server configuration section== 

objMessage.Send 
",sep="")

vbsscript <- paste(part1,part2,part3,sep="\n\n\n")
str_split(vbsscript,"\n")
writeLines(vbsscript, "sendmail.vbs")
Shell("sendmail.vbs")
unlink("sendmail.vbs")
}

...そして次のように使用します:

SendMail(
    from="[email protected]",
    to="[email protected]",
    text="Hallo",   
    subject="readThis",
    smtp="smtp.andI.com",
    user="[email protected]",
    pw="123456"
    )
0
petermeissner