I am sending multiparts emails  ( html and plain text ) , I wrote  as
default :

default :from => Rails.configuration.no_reply_address, :parts_order =>
["text/html", "text/enriched", "text/plain" ]

and each email is generated with the 2 formats :

       mail(:to => @sender, :subject => "#{I18n.t(:email_upload)}") do
|format|
          format.html {render :template => @template }
          format.text {render :layout => false, :template =>
@template}
      end

I receive both , but it's always the plain_text which is the first to
display ( on my Mac, w Mail.app I have to ask for the alternative to
see the html version ..)

did I miss anything important ?

thanks fyh

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to