Re: [R] Email out of R (code)

2011-10-29 Thread Uwe Ligges
R has packages for almost everything, so there is "sendmailR" Uwe Ligges On 28.10.2011 20:04, MacQueen, Don wrote: The various suggestions seem kind of complex to me, at least on a unix-like system (including Mac OS X). This is what I do: sink('tmp.txt') cat('This is the body of th

Re: [R] Email out of R (code)

2011-10-28 Thread MacQueen, Don
The various suggestions seem kind of complex to me, at least on a unix-like system (including Mac OS X). This is what I do: sink('tmp.txt') cat('This is the body of the message\n') sink() system('cat tmp.txt | mail -s "A test email" macque...@llnl.gov') One could probably avoid the tempor

Re: [R] Email out of R (code)

2011-10-28 Thread nutterb
Thanks for posting this. If anyone is interested in a short extension to include an attachment, try the function below. I make no guarantees though. Also, note that winDialog() is used in a couple places, so it may need some therapy before working outside of Windows. send.email <- function(to,

Re: [R] Email out of R (code)

2011-05-19 Thread Bos, Roger
rom: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Daniel Malter Sent: Thursday, May 19, 2011 2:04 PM To: r-help@r-project.org Subject: Re: [R] Email out of R (code) As I (thought I) understood from the sendmailR manual, the package does currently not support server a

Re: [R] Email out of R (code)

2011-05-19 Thread Daniel Malter
As I (thought I) understood from the sendmailR manual, the package does currently not support server authentication, or does it? Daniel -- View this message in context: http://r.789695.n4.nabble.com/Email-out-of-R-code-tp3530671p3536512.html Sent from the R help mailing list archive at Nabble.c

Re: [R] Email out of R (code)

2011-05-19 Thread Uwe Ligges
There is also the sendmailR package if people want to compare even more... Uwe Ligges On 18.05.2011 18:53, Daniel Malter wrote: I do not know. I was not aware and could hardly find any information on create.post(). From what I have seen at first glance, it seems that create.post() either op

[R] Email out of R (code)

2011-05-18 Thread Wolfgang RAFFELSBERGER
ter Cc : r-help@r-project.org Objet : Re: [R] Email out of R (code) How does this compare to create.post() ? Kevin On Tue, May 17, 2011 at 3:44 PM, Daniel Malter wrote: > Hi all, > > I thought I would post code to send an email out of R. The code uses > Grothendieck and Bellosta'

Re: [R] Email out of R (code)

2011-05-18 Thread Daniel Malter
I do not know. I was not aware and could hardly find any information on create.post(). From what I have seen at first glance, it seems that create.post() either opens your standard email program or web browser, which the python code does not. Instead it needs the R-library interfacing Python. I als

Re: [R] Email out of R (code)

2011-05-18 Thread Kevin Wright
How does this compare to create.post() ? Kevin On Tue, May 17, 2011 at 3:44 PM, Daniel Malter wrote: > Hi all, > > I thought I would post code to send an email out of R. The code uses > Grothendieck and Bellosta's interface package rJython for executing Python > from R. The code itself provide

[R] Email out of R (code)

2011-05-17 Thread Daniel Malter
Hi all, I thought I would post code to send an email out of R. The code uses Grothendieck and Bellosta's interface package rJython for executing Python from R. The code itself provides basic email functionality for email servers requiring authentication. It should be easy to extend it (e.g., for