Re: [R] rJython matrix message

2011-09-14 Thread Ben qant
This fixed it: paste(errs, collapse="\\n") Since that fixed it, I did not try anything else. Thanks again, Ben On Wed, Sep 14, 2011 at 10:04 AM, Steve Lianoglou < mailinglist.honey...@gmail.com> wrote: > Hi, > > On Wed, Sep 14, 2011 at 12:01 PM, Ben qant wrote: > > That fixed it!! Thank you

Re: [R] rJython matrix message

2011-09-14 Thread Steve Lianoglou
Hi, On Wed, Sep 14, 2011 at 12:01 PM, Ben qant wrote: > That fixed it!! Thank you very much! I should have thought of that. For the sake of others that might stumble on this thread -- what fixed it, exactly? Doing paste(errs, collapse="\\n"), or the writing to a tmp file thing, or? -steve > >

Re: [R] rJython matrix message

2011-09-14 Thread Ben qant
That fixed it!! Thank you very much! I should have thought of that. Thanks again, Ben On Wed, Sep 14, 2011 at 9:57 AM, Steve Lianoglou < mailinglist.honey...@gmail.com> wrote: > Hi, > > On Wed, Sep 14, 2011 at 11:44 AM, Ben qant wrote: > > Hello, > > > > I've posted something similar under a d

Re: [R] rJython matrix message

2011-09-14 Thread Steve Lianoglou
Hi, On Wed, Sep 14, 2011 at 11:44 AM, Ben qant wrote: > Hello, > > I've posted something similar under a different subject and never received a > solution. Trying again with (hopefully) a better description. > > Objective: Send a matrix of string data in an email message. The message > must have

[R] rJython matrix message

2011-09-14 Thread Ben qant
Hello, I've posted something similar under a different subject and never received a solution. Trying again with (hopefully) a better description. Objective: Send a matrix of string data in an email message. The message must have authentication and be sent via an R script. I'm almost there! Here