1

I saw this question and couldn't make use of it: Ruby email encoding and quoted-printable content

I'd like to send out email as quoted-printable, but it's going out as unencoded text/html. Any help?

class UserMailer < ActionMailer::Base

  def welcome_mail(user)
    recipients        user.email
    from              "no-reply@example.com"
    subject           "Thanks for registering"
    body              :user => user
  end

end
Community
  • 1
  • 1
maček
  • 76,434
  • 37
  • 167
  • 198

1 Answers1

1

There is a solution posted on Ruby Quiz.

mcandre
  • 22,868
  • 20
  • 88
  • 147