Hi,
I am using sendmailR package to send mails from R. I am not able to make
carbon copy work properly. If I specify multiple recipients in to field,
then they all receive individual emails and not carbon copies
My sample code is
require(sendmailR)
header <- list(cc="b.mali@abc.com")
to <-
c("<v.naik@abc.com>","<j.nair@abc.com>","<a.jadhav@abc.com>")
from <- "toto@abc.com"
sendmail(from, to, "hello", "test", headers=header,
control=list(smtpServer="xyz.smtp.net"))
In above code, cc doesn't work. b.mali@abc.com never receives any email.
Also, recipients only see their email address in to field when they
receive email.
Is there a different and correct way to send carbon copy mails from R ?
Alok Jadhav
===============================================================================
Please access the attached hyperlink for an important el...{{dropped:8}}
updated code pasted here. So I guess CC is not an option at all? In that case
is there any other package that would be useful?
require(sendmailR)
to <- c("v.n at abc.com")
header <- list(cc=c("a.j at abc.com"))
x <- sendmail("toto at abc.com", to, "test",
"testing",
header=header,control=list(smtpServer=server,verbose=TRUE))
<< 220 equity.xyz.com ESMTP Sendmail 8.11.7p1+Sun/8.11.7; Thu, 11 Jul 2013
21:31:43 -0400 (EDT)>> HELO HKD03836654
<< 250 equity.xyz.com Hello HKD03836654.gbl.ad.net [169.34.175.142],
pleased
to meet you>> MAIL FROM: toto at abc.com
<< 250 2.1.0 toto at abc.com... Sender ok>> RCPT TO: v.n at abc.com
<< 250 2.1.5 v.n at abc.com... Recipient ok>> DATA
<< 354 Enter mail, end with "." on a line by
itself>> <message data>
<< 250 2.0.0 r6C1Vh101169 Message accepted for
delivery>> QUIT
<< 221 2.0.0 equity.csfb.com closing connection
--
View this message in context:
http://r.789695.n4.nabble.com/Sending-carbon-copy-mails-from-R-tp4671153p4671376.html
Sent from the R help mailing list archive at Nabble.com.