I try to localizate the mail subjects sending by UserNotify, following this approach:
def forgot_password(user, url=nil)
...
# Email header info
@subject += l(:user_notify_forgotten_password_subject)
...
end
When I receive the mail, the body appears fine, but the subject doesn't - the "special characters" (acutes, ñ, etc) are render bad
Any idea?
|