Sending a Text in R

Don't you hate it when you are running a long piece of code and you keep checking the results every 15 minutes, hoping it will finish? There is a better way.

I got the idea from here. He uses a Python script and the text interface is not free. I thought someone must have already thought of this for R. There is an easy solution. You can send an email fairly easily in R. You can also send text messages as emails. This page gives a few examples of how to send an email in R. Sending a text via email will depend on what carrier you have and I am sure standard text message fees apply.You can only send 20 emails a day with this package, but that probably won't be a big deal.

It is basically a one-liner. Here is the code I used:
install.packages("mail",repos="http://cran.case.edu/")
library(mail)
sendmail("5555555555@txt.att.net",
subject="Notification from R",message="MCMC Finished", password="rmail")

That's it!

Avatar
Andrew J. Landgraf
Data Scientist
comments powered by Disqus