Search code examples
ruby-on-railsrubyemailactionmailermailer

ApplicationMailer default from title not email address?


default from works with an email address, but when a recipient receives an email I want the title to be "Live to Challenge" not "livetochallenge.com"

enter image description here

class ApplicationMailer < ActionMailer::Base
  default from: "livetochallenge.com@gmail.com" #This Line Needs An Email Address to Work
  layout 'mailer'
end

How can Action Mailer send with livetochallenge.com@gmail.com, but be shown as "Live to Challenge"?


Solution

  • default from: '"Live to Challenge" <livetochallenge.com@gmail.com>'