views:

32

answers:

2

I am trying to write a program in Ruby that can send a email to a phone. Outside of the program, I am able to do this by sending an email to [email protected] or any other carrier in my Apple Mail client, and it worked fine; it sends a text message to the targeted phone, but when I tried to use a Ruby API (I forget the name), that used sendmail, to send a message, it would not send the message. Are there any ruby APIs that can send an email to a phone? (Or can someone just list some different Ruby mail APIs that I can try)?

+1  A: 

I've used ActionMailer and Pony (http://github.com/benprew/pony) in the past.

Jason Noble
A: 

it should "just work" assuming your mailing system/settings are setup right.

rogerdpack