sendmailR添加CC地址

时间:2013-11-29 02:11:20

标签: r sendmailr

我正在使用sendmailR自动发送电子邮件。我想将一份副本复制到一个地址,以便保存为记录。我使用的代码是:

>from <- "<abc@sample.com.cn>"

>to <- 'def@sample.com.cn'

>header<-list(Cc=c("<hij@sample.com.cn>"))

>subject <- "test1"

>body <- 'test1';

>mailControl=list(smtpServer="mail.sample.com.cn")

>sendmail(from=from,to=to,subject=subject,msg=body,headers=header,control=mailControl)

cc部分从未奏效,我无法弄明白为什么。我已经提到过这篇文章:Is it possible to cc recipients using sendmail in R?,但似乎一切都应该是正确的。

任何人都可以帮我这个吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

“cc”和“bcc”是版本1.2-1的sendmailR :: sendmail的参数,可在CRAN上使用:http://cran.r-project.org/web/packages/sendmailR/index.html