Answers for "how to send email from console rails"

0

rails send email from console

ActionMailer::Base.mail(
  from: "test@example.co", 
  to: "valid.recipient@domain.com", 
  subject: "Test", 
  body: "Test"
).deliver_now
Posted by: Guest on April-26-2020

Code answers related to "how to send email from console rails"

Browse Popular Code Answers by Language