On Mar 17, 6:07 pm, Erwin <[email protected]> wrote: > > class Notifier < ActionMailer::Base > default :charset => "utf-8" > .. > mail(:to => destination, :subject => subject, :from => from) > do |format| > format.text(:content_transfer_encoding => "base64") > format.html(:content_transfer_encoding => "base64") > end > > but this doesn't get rid of the error.... how & where should I write > the encoding information
That's something else, it sets charset header on the outgoing message. What ruby 1.9 is complaining about is the encoding of your erb file. You need to do what the rails error message says and stick <%# encoding: utf-8 %> on the first line of your template (assuming utf-8 is what your template is written in) Fred -- 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.

