Hi all
I''m trying to get my actionmailer to work. I''ve set the
following params
in my environment.rb:
config.action_mailer.smtp_settings = {
:address => "mail.???.ch",
:port => 25,
:domain => "???.ch",
:authentication => :login,
:user_name => "???",
:password => "???"
}
config.action_mailer.default_charset = "utf-8"
So far, everything seems to work, the log is:
Sent mail:
Date: Fri, 24 Oct 2008 23:53:16 +0200
To: ???@???.ch
Subject:
=?utf-8?Q?Hippie=2dWG_CD=2dShop_Bestellungsbest=c3=a4tigung?Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Liebe(r) bla,
Deine Bestellung ist bei uns angekommen:
...
But I didn''t receive any email yet. What could be the problem? I tried
it with wrong settings in environment.rb (so it shouldn''t be able to
connect to the email server), but it still stated everything went
successful.
How can I "debug" this stuff? Is there something I have to set on my
email server?
Thanks for help
Josh
--
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
-~----------~----~----~----~------~----~------~--~---
On Oct 24, 11:58 pm, Joshua Muheim <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> I''m trying to get my actionmailer to work. > > How can I "debug" this stuff? Is there something I have to set on my > email server?Make sure you have config.action_mailer.raise_delivery_errors = true in config/environments/development.rb. --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Henrik --- wrote:> On Oct 24, 11:58�pm, Joshua Muheim <rails-mailing-l...@andreas-s.net> > wrote: >> I''m trying to get my actionmailer to work. >> >> How can I "debug" this stuff? Is there something I have to set on my >> email server? > > Make sure you have > config.action_mailer.raise_delivery_errors = true > in config/environments/development.rb.Thanks a lot. :-) -- 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Maybe Matching Threads
- Cannot receive from specified address Unauthenticated senders not allowed
- ActionMailer works for gmail/yahoo, but not for other email addresses...HELP!
- ActionMailer - Sent but no mail?
- Line breaks removed from ActionMailer template
- has anybody made actionmailer work with rails 2.3.5?