search for: sendmailr

Displaying 11 results from an estimated 11 matches for "sendmailr".

Did you mean: sendmail
2010 Aug 23
3
sendmailR-package-valid code needed
## Not run: from <- sprintf("<sendmailR@ to <- "<olafm at datensplitter.net>" subject <- "Hello from R" msg <- "It works!" sendmail(from, to, subject, msg, control=list(smtpServer="ASPMX.L.GOOGLE.COM")) ## End(Not run) the above commands are provided in this document ie http://cran....
2013 Nov 18
3
Sending a matrix in an email
I have a matrix which has colnames and I would like to send this matrix using sendmailR. How can I convert this simple matrix to a format which can be used as the body variable in sendmailR? I see how I can create a file attachment using mime_part but I would like to send the matrix in the body of the email. The matrix looks like: ABD DEF GHI JKL MNO TOT [1,] 0.44 0.81...
2013 Feb 20
1
Sending Email from R
Hi R experts, I know how to send simple plain text message in body and how to send with attachments. This is thanks to stackoverflow reference below. But I don't know how to send dput() output in the body of the email (or attachment) using sendmailR. I more interested in figuring out how to include it as part of the body of the email. Does anybody have experience on how to do this? #http://stackoverflow.com/questions/2885660/how-to-send-email-with-attachment-from-r-in-windows #?sendmailR::sendmail library(sendmailR) #set working directory...
2013 Jul 09
1
Sending carbon copy mails from R
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(&quo...
2013 Jun 10
1
Sending Email with Attachment
Hi, I am trying to send an email through gmail or outlook from my Windows PC and finding trouble to send the email. The code which I am using is given below: Code : library("sendmailR") from <- "abcd@outlook.com" to <- <mailto:efgh@gmail.com> efgh@gmail.com subject <- "Run at" mailControl = list(smtpServer="blu-m.hotmail.com") attachment <- "type_1.pdf" attachmentName <- "target_score.pdf" attachmentOb...
2013 Jun 05
1
Send Mail R and Socket Connections
Good Afternoon All, I am attempting to use the SendMailR function, I have checked with our I.T. department that I am using the correct server and I have the right permissions to connect and they have sent emails via this server but not through R and I have also checked that the port should be 25. The code: / # E-Mail # library(sendmailR) from &l...
2009 Jul 22
4
Cómo enviar e-mails desde R?
Hola a todos, Sólo por curiosidad, sabe alguien cómo enviar correos electrónicos desde R? Estoy haciendo algunas simulaciones en diferentes computadores y me gustaría tener la posibilidad de enviar un mensaje a mi correo electrónico cuando cada una termine. En R-help hubo una pregunta similar pero requiere el uso de Outlook y operar "manualmente" algunas cosas, lo cual no es
2010 Aug 17
3
R Send an Email
Just out of curiosity, has anyone ever written a function that sends an email to you when an R process has finished? For instance, I often work with very large data sets and certain tasks (e.g., merging records, lmer runs) can take a long time and I find myself constantly looking over to see if R is done. But, it would just be neat if there was a way R could send me an email alerting me that a
2011 May 17
5
Email out of R (code)
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 sending attachments). I hope it's useful. require(rJython) rJython <- rJython()
2010 Apr 13
2
Getting started with .C
...uot;, with nothing but the above C code in it. I > can't figure out how to compile it. I don't understand the syntax (no > parentheses?) and I always get the same information-free error message: > >> list.files() > [1] "AER" "convolve.c" "sendmailR" >> R CMD SHLIB "compile.c" > Error: syntax error >> COMPILE "compile.c" > Error: syntax error >> R CMD SHLIB "compile" > Error: syntax error >> COMPILE "compile" > Error: syntax error >> R CMD SHLIB compile.c &...
2010 Aug 24
0
mlm for within subject design
...r-help-owner at r-project.org When replying, please edit your Subject line so it is more specific than "Re: Contents of R-help digest..." --Forwarded Message Attachment-- From: veepsirtt at gmail.com To: r-help at r-project.org Date: Mon, 23 Aug 2010 16:14:52 +0530 Subject: [R] sendmailR-package-valid code needed ## Not run: from <- sprintf(" to <- "" subject <- "Hello from R" msg <- "It works!" sendmail(from, to, subject, msg, control=list(smtpServer="ASPMX.L.GOOGLE.COM")) ## End(Not run) the above commands are provided i...