This is a little convoluted and I'm new to Rails, so please bear with
me...

My application needs to receive both SMS and emails.  I have a
controller that has a sms_in method, which receives SMS messages via a
HTTP POST request from an SMS gateway.  That controller then calls the
IncomingMessage.process(args) method to go through a number of
validations and create the incoming message in the database as well as
various other database entries that are required with each incoming
message.  This works fine.

However, I'm having trouble getting it to work for emails.  In my
MailProcessor (ActionMailer) receive method, I'm trying to pass
similar arguments to the IncomingMessage.process(args) class method.
However, for some reason this isn't working...I can't seem to call a
class method for an ActiveRecord object from within the ActionMailer
object, and I have no idea why!

Any help would be greatly appreciated!
-Gavin
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to