[Rails] Re: My App doesn't send mails

2009-10-18 Thread Adam Meyer
Adam Meyer wrote: > Thanks for all replies. I'll check it out and come back to you soon. It does run now. I fixed it with the website http://blog.inspired.no/smtp-error-while-using-gmail-in-rails-271 Thanks -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~-

[Rails] Re: My App doesn't send mails

2009-10-17 Thread Adam Meyer
Tony Amoyal wrote: > These are my mail settings: > > config.action_mailer.delivery_method = :sendmail > config.action_mailer.raise_delivery_errors = true > > # Enable serving of images, stylesheets, and javascripts from an asset > server > # config.action_controller.asset_host =

[Rails] Re: My App doesn't send mails

2009-10-13 Thread Adam Meyer
Thanks for all replies. I'll check it out and come back to you soon. -- 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

[Rails] Re: My App doesn't send mails

2009-10-05 Thread Tony
These are my mail settings: config.action_mailer.delivery_method = :sendmail config.action_mailer.raise_delivery_errors = true # Enable serving of images, stylesheets, and javascripts from an asset server # config.action_controller.asset_host = "http:// assets.example.com" conf

[Rails] Re: My App doesn't send mails

2009-10-05 Thread Andi Schacke
If you're still wondering why mails get sent in development mode: You probably have sendmail installed on your development machine, it just works out of the box. If you don't want to send mails in development mode, just set 'perform_deliveries = false' in your action_mailer configuration for your

[Rails] Re: My App doesn't send mails

2009-10-04 Thread Sender
Hi Adam, You need to first figure out your mail settings in environment.rb. Please see for those settings in action mailer API. Hope it works for you, because there can be many reasons for this issue. On Sun, Oct 4, 2009 at 4:21 PM, Adam Meyer wrote: > > Hey everyone > > I put my developed app

[Rails] Re: My App doesn't send mails

2009-10-04 Thread Gavin Morrice
Adam, Debugging email can be fun! Try this: http://pastie.org/641496 Here's a simple mail setup (assuming you're using smtp) Change the details to your domain, username etc. and run this in irb. If the mail sends, it's likely a problem with ActionMailer Setup in your app. If the mail doesn'