Rails email name label

249 Views Asked by At

I'm using Rails + Mandrill (via SMTP) to send emails.
The emails are sent from [email protected] but I want users to see a nice name like John Doe instead of the email address when receiving the mail. Can this be achieved through rails?

1

There are 1 best solutions below

0
On BEST ANSWER

In your Mailer class put something like

default from: 'John Doe <[email protected]>'

For example

class MyMailer < ApplicationMailer
  default from: 'John Doe <[email protected]>'

  def example_mail
    ...
  end
end