Created
April 24, 2009 15:14
-
-
Save tansengming/101141 to your computer and use it in GitHub Desktop.
Rails Console Actionmailer test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copy and paste this to the rails console to test your email settings | |
class MyMailer < ActionMailer::Base | |
def test_email | |
@recipients = "someone@somewhere.com" | |
@from = "must_be_same_as_smpt_account_login@gmail.com" | |
@subject = "test from the Rails Console" | |
@body = "This is a test email" | |
end | |
end | |
MyMailer::deliver_test_email | |
# if all goes well you should see a lot text scrolling by | |
# Copied with love from http://lists.radiantcms.org/pipermail/radiant/2007-February/003394.html | |
# btw for info on how to get rails working with Gmail SMTP go to http://robertbousquet.com/articles/using-gmail-smtp-with-actionmailer |
In Rails 3.2, worked with this :
class TestMailer < ActionMailer::Base
default :from => "me@mysite.com"
def welcome_email
mail(:to => "other@elsewhere.com", :subject => "Test mail", :body => "Test mail body")
end
end
TestMailer.welcome_email.deliver
Works phantastic. Rails 4
like a charm for me.
Va de pinga
Thank you @tansengming and @ByScripts
thanks
Thanks
Thanks! It's work for me in Rails 4.2 .
what happen if credentials are invalid? some error is raiseD?
Thanks dude, this helped me.
In rails 5, I did SomeMailer::some_method(Thing.first, Otherthing.last).deliver
via the console.
@ByScripts thanks for your example. Helped me out very much. Works on Rails 4.2.0
Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in rails3.1.1 console, i managed to send by
MyMailer.test_email().deliver