邮箱将收件人从用户的电子邮件更改为用户的名称FoR 4

时间:2014-09-05 19:56:43

标签: ruby-on-rails-4 mailboxer

我是一名初学程序员,我刚刚在Ruby on Rails 4网络应用程序中实现了Mailboxer。一切都很好,但我希望收件人是用户的名字,而不是他们的电子邮件。我搜索了几个小时,但找不到准确的答案。这是我的代码,虽然它几乎完全是文档指示的内容。

配置/初始化/ mailboxer.rb

    Mailboxer.setup do |config|

  #Configures if you application uses or not email sending for Notifications and Messages
  config.uses_emails = true

  #Configures the default from for emails sent for Messages and Notifications
  config.default_from = "no-reply@mailboxer.com"

  #Configures the methods needed by mailboxer
  config.email_method = :mailboxer_email
  config.name_method = :name

  #Configures if you use or not a search engine and which one you are using
  #Supported engines: [:solr,:sphinx]
  config.search_enabled = false
  config.search_engine = :solr

  #Configures maximum length of the message subject and body
  config.subject_max_length = 255
  config.body_max_length = 32000
end

应用程序/模型/ user.rb

  acts_as_messageable

  ...

  def name
    email
  end

  def mailboxer_email(object)
    email
  end

非常感谢任何帮助。我试过玩代码,但我不能完全达到正确的调整组合。非常感谢你!

1 个答案:

答案 0 :(得分:0)

这基本上是接收邮件用户代理的一项功能,它采用邮件标题

To: somebody <me@example.com>

仅显示&#34;某人&#34;。构建该标头的一种方法应该是

def mailboxer_email(object)
    "#{name} <#{email}>"
end

如果变量name包含您希望邮件用户代理显示的用户名。