8

我目前正在用 RoR 3.2 编写一个邮件程序,它会发送应该根据用户语言进行本地化的邮件。我设法渲染了正确的本地化视图,但在某些需要更改语言环境的字段(如主题)方面遇到了一些困难。在发送电子邮件之前,我已经阅读了一些反对更改语言环境的帖子。用户有许多不同的语言,这意味着每次向用户发送电子邮件时都要更改我的语言环境。

我知道可以更改语言环境、发送电子邮件、更改回语言环境。这感觉不像是铁轨方式。有这样做的正确方法吗?

这是一个片段:

class AuthMailer < ActionMailer::Base
  add_template_helper(ApplicationHelper)
  default :from => PREDEF_MAIL_ADDRESSES::System[:general]

  [...]

  def invite(address, token, locale)
    @token = token
    @locale = locale
    @url = url_for(:controller => "signup_requests", :action => "new", :token => token.key, :locale => locale)

    mail(:subject => "Invitation", :to => address) do |format|
      format.html { render ("invite."+locale) }
      format.text { render ("invite."+locale) }
    end
  end

  [...]
end

我的看法

auth_mailer
  invite.en.html.erb
  invite.en.text.erb
  invite.it.html.erb
  invite.it.text.erb
  ...

简而言之,在这种情况下,我想使用 @locale 本地化 :subject,而不是通过运行:I18n.locale = locale

4

3 回答 3

30

暂时更改全局语言环境是可以的。有一个方便的 I18n.with_locale 方法。ActionMailer 也会自动翻译主题。

class AuthMailer
  def invite(address, token, locale)
    @token = token
    @locale = locale
    @url = url_for(:controller => "signup_requests", :action => "new", :token => token.key, :locale => locale)

    I18n.with_locale(locale) do
      mail(:to => address)
    end
  end
end

在语言环境中:

en:
  auth_mailer:
    invite:
      subject: Invitation
于 2012-06-28T15:50:44.693 回答
8

导轨 4 路

# config/locales/en.yml
en:
  user_mailer:
    welcome:
      subject: 'Hello, %{username}'

# app/mailers/user_mailer.rb
class UserMailer < ActionMailer::Base
  def welcome(user)
    mail(subject: default_i18n_subject(username: user.name))
  end
end

default_i18n_subject - 在 [mailer_scope, action_name] 范围内使用 Rails I18n 类翻译主题。如果在指定范围内找不到主题的翻译,它将默认为 action_name 的人性化版本。如果主题有插值,您可以通过插值参数传递它们。

于 2015-08-12T08:37:36.500 回答
4

当您像这样调用 I18n 时,您应该能够传递语言环境:

mail(:subject => I18n.t("app.invite.subject", :locale => locale), :to => address) do |format|
  format.html { render ("invite."+locale) }
  format.text { render ("invite."+locale) }
end

请记住,locale变量必须是符号。

于 2012-06-28T15:21:55.570 回答