Skip to content

Instantly share code, notes, and snippets.

@prdanelli
Created January 7, 2020 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prdanelli/d4c5511ca4b38ff1c1211331228f6586 to your computer and use it in GitHub Desktop.
Save prdanelli/d4c5511ca4b38ff1c1211331228f6586 to your computer and use it in GitHub Desktop.
Send email from Rails Console.
options = {
to: "recipient@address.com",
from: "email@address.org",
subject: "Testing",
body: "This is the body"
}
ActionMailer::Base.mail(options).deliver_now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment