Re: [R] Sending carbon copy mails from R

2013-07-15 Thread Alok Jadhav
There was a small typo in my sendmail command. I was passing header=header instead of headers=header. This argument was accepted because of `...` argument which is not the last argument as one would except. A minor mistake caused me a bit of frustration. This issue is resolved now. Thanks everyone.

Re: [R] Sending carbon copy mails from R

2013-07-15 Thread S Ellison
gt; [mailto:r-help-boun...@r-project.org] On Behalf Of Alok Jadhav > Sent: 12 July 2013 02:49 > To: r-help@r-project.org > Subject: Re: [R] Sending carbon copy mails from R > > updated code pasted here. So I guess CC is not an option at > all? In that case is there any oth

Re: [R] Sending carbon copy mails from R

2013-07-12 Thread Jadhav, Alok
PM To: Jadhav, Alok Cc: r-help@r-project.org Subject: Re: [R] Sending carbon copy mails from R Note that sendmailR is not 'from R'. There are other possibilities, and I use create.post() from R itself, modified as I need. On 12/07/2013 02:48, Alok Jadhav wrote: > updated code pasted here

Re: [R] Sending carbon copy mails from R

2013-07-11 Thread Prof Brian Ripley
Note that sendmailR is not 'from R'. There are other possibilities, and I use create.post() from R itself, modified as I need. On 12/07/2013 02:48, Alok Jadhav wrote: 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?

Re: [R] Sending carbon copy mails from R

2013-07-11 Thread Alok Jadhav
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...@abc.com") header <- list(cc=c("a...@abc.com")) x <- sendmail("t...@abc.com", to, "test", "testing", header=header,control=list(smtpServer=

[R] Sending carbon copy mails from R

2013-07-09 Thread Jadhav, Alok
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.m...@abc.com")