views:

128

answers:

1

I saw this question and couldn't make use of it: http://stackoverflow.com/questions/1034135/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              "[email protected]"
    subject           "Thanks for registering"
    body              :user => user
  end

end
+1  A: 

There is a solution posted on Ruby Quiz.

mcandre