Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Antiarchitect/143e40aaae463486bfc52b8bbf79e9d3 to your computer and use it in GitHub Desktop.
Save Antiarchitect/143e40aaae463486bfc52b8bbf79e9d3 to your computer and use it in GitHub Desktop.
Send Email From Rails Console
# Simple approach to sending email from the Rails console
# Implementation idea courtesy of Steve Klabnik
# http://blog.steveklabnik.com/posts/2012-09-09-random-ruby-tricks--class-new
# Create the mailer class with a block and assign to a variable
mailer = Class.new(ActionMailer::Base) do
def example_message
mail(to: "voronkovaa@gmail.com", from: "noreply@polarstern-staging.de", subject: "Example Message") do |format|
format.text { render text: "Example message body" }
end
end
end
# Use the class just as you would a typical mailer
mailer.example_message.deliver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment