Skip to content

Instantly share code, notes, and snippets.

@namnv609
Last active December 19, 2018 02:52
Show Gist options
  • Save namnv609/331b2eb8132467bea3a296351a1b9111 to your computer and use it in GitHub Desktop.
Save namnv609/331b2eb8132467bea3a296351a1b9111 to your computer and use it in GitHub Desktop.
Test send email from Rails console
class TestMailer < ApplicationMailer
def send_mail to
subject = "Test subject"
body = "Lorem ipsum dolor sit amet"
mail to: to, subject: subject, body: body
end
end
TestMailer.send_mail("[email protected]").deliver_now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment