Skip to content

Instantly share code, notes, and snippets.

@tansengming
Created April 24, 2009 15:14
Show Gist options
  • Star 32 You must be signed in to star a gist
  • Fork 20 You must be signed in to fork a gist
  • Save tansengming/101141 to your computer and use it in GitHub Desktop.
Save tansengming/101141 to your computer and use it in GitHub Desktop.
Rails Console Actionmailer test
# 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
@jumph4x
Copy link

jumph4x commented Aug 2, 2017

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment