Displaying 2 results from an estimated 2 matches for "createitem".
2012 Mar 05
1
Issue with using rcom on windows 7
...vironment on windows 7 for the first time. I am
not able to send emails from my R sessions. I am having problem in
creating outlook com object to send emails. Same code works fine from my
windows xp setup.
Following is the code
(If outlook is already running on PC)
x <- outlook()
mail <- x$CreateItem(0)
Mail object is NULL in above case.
If outlook is not running, then mail object is created properly. But
still the mail is not sent. I think this is because the port 25 is not
open by default on the workstation as per the admin policies. I will
ask the admin to open the port 25 for me and tes...
2005 May 10
6
Does R have a command for sending emails?
Is there a way to have an R program send an email?
Something like this:
address <- 'abc at d.com'
text <- 'This is the email body'
send.email(address, text)
Thanks.
FS