Hi, I am new to ActionMailer, need to read incoming mails using rails ActionMailer, dont know how to do it.. also need to track bounced mails. Can anybody help me pls. Thanks Muralimaran Kumar. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Muralimaran Kumar wrote:> Hi, > > I am new to ActionMailer, need to read incoming mails using rails > ActionMailer, dont know how to do it.. also need to track bounced mails. > > Can anybody help me pls. > > Thanks > Muralimaran Kumar. > >I''ve never done it but have you seen this: http://wiki.rubyonrails.org/rails/pages/HowToReceiveEmailsWithActionMailer Is there something in the instructions that doesn''t work? Cheers mohit. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Mohit Sindhwani wrote:> Muralimaran Kumar wrote: >> > I''ve never done it but have you seen this: > http://wiki.rubyonrails.org/rails/pages/HowToReceiveEmailsWithActionMailer > Is there something in the instructions that doesn''t work? > > > Cheers > mohit.Hi Mohit, Thanks for your reply, I saw your posting, but dont know where to use it. e.g., def receive(email) what should be given in place of "email" parameter.. Any help can be appreciated. Regards, Muralimaran Kumar. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
My best suggestion is to get the Agile Web Development with Rails by Dave Thomas, DHH et.al. http://pragmaticprogrammer.com/titles/rails/index.html It has a complete example of receiving email, as well as sending. DZ On Apr 27, 5:28 am, Muralimaran Kumar <rails-mailing-l...@andreas- s.net> wrote:> Mohit Sindhwani wrote: > > Muralimaran Kumar wrote: > > > I''ve never done it but have you seen this: > >http://wiki.rubyonrails.org/rails/pages/HowToReceiveEmailsWithActionM... > > Is there something in the instructions that doesn''t work? > > > Cheers > > mohit. > > Hi Mohit, > > Thanks for your reply, > > I saw your posting, but dont know where to use it. > e.g., > > def receive(email) > > what should be given in place of "email" parameter.. > > Any help can be appreciated. > > Regards, > Muralimaran Kumar. > > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
"email" is an object of TMail class. Read every word on the wiki (http://wiki.rubyonrails.org/rails/pages/HowToReceiveEmailsWithActionMailer) and you should be fine! On 4/27/07, Muralimaran Kumar <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Mohit Sindhwani wrote: > > Muralimaran Kumar wrote: > >> > > I''ve never done it but have you seen this: > > http://wiki.rubyonrails.org/rails/pages/HowToReceiveEmailsWithActionMailer > > Is there something in the instructions that doesn''t work? > > > > > > Cheers > > mohit. > > Hi Mohit, > > Thanks for your reply, > > I saw your posting, but dont know where to use it. > e.g., > > def receive(email) > > what should be given in place of "email" parameter.. > > Any help can be appreciated. > > Regards, > Muralimaran Kumar. > > -- > Posted via http://www.ruby-forum.com/. > > > >-- rm -rf / 2>/dev/null - http://null.in Dont judge those who try and fail, judge those who fail to try.. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Rails Cookbook has a great section on how to do this. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---