Skip to content

Instantly share code, notes, and snippets.

@poacosta
Last active May 6, 2023 07:35
Show Gist options
  • Select an option

  • Save poacosta/d7a7cc2ab8b1c846554b25685a306a6d to your computer and use it in GitHub Desktop.

Select an option

Save poacosta/d7a7cc2ab8b1c846554b25685a306a6d to your computer and use it in GitHub Desktop.
Send email from RoR console
# frozen_string_literal: true
mailer = ActionMailer::Base.new
mailer.delivery_method
mailer.smtp_settings
mailer.mail(from: 'sender@example.com', to: 'recipient@example.com', subject: 'Testing email', body: "Hello, you've got mail!").deliver!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment