Ruby on Rails Monday, February 27, 2012

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...@ruby-forum.com> 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...@gmail.com",
>   :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...@example.com"
>   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@googlegroups.com.
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.

No comments:

Post a Comment