ruby-on-rails – Gmail不会检测到回复字段

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Gmail不会检测到回复字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的FeedbackMailer中有以下设置.
def notification(Feedback)

  from       "admin@gmail.com"
  subject    "Some Feedback"
  recipients "admin@gmail.com"
  reply_to   Feedback.creator.email
  body({ :Feedback => Feedback })
  content_type "text/html"
end

我正在使用admin@gmail.com帐户发送此应用的电子邮件.电子邮件完美交付.当我收到邮件的详细信息后,我看到如下:

from     "admin@gmail.com"
reply-to "user_email@foo.com"
to       "admin@gmail.com"

现在,当我按gmail界面中的回复按钮时,to字段现在应该有“user_email@foo.com”,但是它有“admin@gmail.com”.我做错了什么或Gmail是吗?

解决方法

正如 thread Waseem在评论中指出的.

Gmail ignores the reply-to when the
From is one of your configured send-as
addresses in gmail. I don’t know why.

我以此提示,并通过user_email@foo.com取代了From电子邮件字段,并添加了相同的user_email@foo.com作为回复地址. Gmail现在正确使用“回复”字段.

原文链接:https://www.f2er.com/ruby/273467.html

猜你在找的Ruby相关文章