script/plugin install git://github.com/brendanlim/sms-fu.git
SMS Fu Gets Rails 2.1 Compatibility 0
Posted by brendan
on Thursday, June 19
I've received a couple of e-mails regarding SMS Fu and its incompatibility with Rails 2.1 lately. I've been quite busy lately and haven't had much time to check out the situation, but fret no more. I've updated SMS Fu to be fully compatible with the newest version of Rails. Please visit the SMS Fu project page at ActsAsCommunity if you have any questions or comments or you could always check it out at GitHub. Also, if you're on 2.1, you can install SMS Fu directly from GitHub using the line below -- sexy.
SMS Fu - Now with International Support
Posted by brendan
on Monday, March 31
Now, there's over 30 different carriers that are supported right out of the box. Here is the new complete list of supported carriers: Alltel, Ameritech, AT&T, BellSouth Mobility, BlueSkyFrog, Boost Mobile, Cellular South, Fido, Metro PCS, PSC Wireless, Qwest, Southern Link, Sprint, Suncom, T-Mobile (US/UK/Germany), Virgin Mobile, Verizon Wireless, Vodafone (UK,Italy,Japan).
View the updated README and view the super simple installation instructions here or here.
Grab the latest through svn:
script/plugin install http://sms-fu.googlecode.com/svn/trunk/sms_fuBe cool and grab the latest through GitHub:
git clone git://github.com/brendanlim/sms-fu.git vendor/plugins/sms_fu
Send Text Messages From Rails with SMS Fu 16
Posted by brendan
on Thursday, February 28
This plugin has been sitting dormant for a while and I haven't had a chance to really write about it since I've been so busy lately. Basically what this is, is just a quick Rails plugin that allows you to send an SMS from your application. This does not require any kind of "gateway" or third-party service to get the job done. The plugin takes in a phone number, the carrier, and a message. From this information, it will format an e-mail correctly that will actually end up being sent to that phone in the form of a text message. How easy is it to use? Very.
You can grab the latest from GitHub.
Supported Carriers:Sorry, International carriers aren't supported at the moment. Alltel, Ameritech, AT&T, BellSouth Mobility, BlueSkyFrog, Boost Mobile, Cellular South, Fido, Metro PCS, PSC Wireless, Qwest, Southern Link, Sprint, Suncom, T-Mobile (US/UK/Germany), Virgin Mobile, Verizon Wireless, Vodafone (UK,Italy,Japan).
Add this one include line to one of your controllers.
The three required parameters are the phone number, carrier, and the message itself. You can find the correct carrier codes in sms_fu.yml.
You can set the maximum length of the SMS message, which is not set by default. Most phones can only accept 128 characters, and each phone can handle these messages differently. To set the limit, just pass it in as an option when delivering an SMS.
If you want to roll your own mailer and just want to use SMS Fu to retrieve the formatted address of the recipient, you can do so by doing the following below.
Hope you all enjoy, and please send me some feedback on any new features you'd like added.
You can grab the latest from GitHub.
git clone git://github.com/brendanlim/sms-fu.git vendor/plugins/sms_fu
Supported Carriers:
Add this one include line to one of your controllers.
class ExampleController < ApplicationController
include SMSFu
end
After this, just edit /config/sms_fu.yml with your custom reply-to address.
The three required parameters are the phone number, carrier, and the message itself. You can find the correct carrier codes in sms_fu.yml.
deliver_sms("5558675309","AT&T","your message here")
You can set the maximum length of the SMS message, which is not set by default. Most phones can only accept 128 characters, and each phone can handle these messages differently. To set the limit, just pass it in as an option when delivering an SMS.
deliver_sms("5558675309","AT&T","your message here", :limit => 200)
If you want to roll your own mailer and just want to use SMS Fu to retrieve the formatted address of the recipient, you can do so by doing the following below.
get_sms_address("5558675309","AT&T")
Hope you all enjoy, and please send me some feedback on any new features you'd like added.



