What happens when you run the following in the console?
user = User.first
UserMailer.registration_confirmation(user).deliver
On Feb 26, 7:56 pm, Soichi Ishida
<li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org>
wrote:> Rails 3.1.3
>
> I have followed the RailsCast
ActionMailer.http://railscasts.com/episodes/206-action-mailer-in-rails-3
> Around 5minutes, Ryan succeeds in sending mails, but I don''t.
>
> My setup_mail.rb
>
> ActionMailer::Base.smtp_settings = {
> :address => "smtp.gmail.com",
> :port => 587,
> :domain => "gmail.com",
> :user_name =>
"soujiro0...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org",
> :password => "xxx",
> :authentication => "plain",
> :enable_starttls_auto => true
>
> }
>
> I added to users_controller.rb
>
> UserMailer.registration_confirmation(@user).deliver
>
> and user_mailer.rb
>
> class UserMailer < ActionMailer::Base
> default from: "f...-hcDgGtZH8xNBDgjK7y7TUQ@public.gmane.org"
> def registration_confirmation(user)
> mail(:to => user.email, :subject => "Registered" )
>
> end
> end
>
> and I prepared registration_confirmation.txt.erb
>
> Could anyone find what''s wrong with it ?
>
> Thanks in advance.
>
> soichi
>
> --
> 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@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.