Gmail没有检测到回复字段 [英] Gmail does not detect the reply-to field

查看:151
本文介绍了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 帐户发送此应用的电子邮件。电子邮件完美交付。当我收到电子邮件的细节后,我看到如下:

I am using admin@gmail.com account to send emails for this application. The emails are delivered perfectly. And when I check the details of the email after receiving it, I see following:

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

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

Now when I press on the reply button in the gmail interface, the to field should now have the "user_email@foo.com" but it is having "admin@gmail.com". Am I doing something wrong or gmail is?

推荐答案

由于线程 Waseem在指出的评论中指出。

As the thread Waseem pointed out in a comment indicated.



From是您在gmail中配置的一个
地址时,Gmail忽略回复。我不知道为什么。

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并添加相同的user_email@foo.com作为回复地址。 Gmail现在正确使用回复字段。

I took this as a hint and replaced the From email field by the user_email@foo.com and added the same user_email@foo.com as a Reply-to address. Gmail now uses the Reply-to field correctly.

这篇关于Gmail没有检测到回复字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆