为什么 Gmail 不让我修改 :from field Rails action mailer

Why doesn't Gmail let me modify :from field Rails action mailer

我有一个简单的预订申请表。当用户提交并创建请求时,包含请求数据的电子邮件将发送给其中一位利益相关者(我们称她为管理员)。我正在使用免费的 gmail 帐户发送带有操作邮件程序的电子邮件。问题是管理员希望在客户点击 gmail 中的 "Reply" 按钮时直接回复客户,而不是回复发件人。我尝试像这样编辑 :from 字段,但没有用。我有哪些选择才能使这成为可能?

def sample_email(sender_email, user_name, booking_id)
    @booking = Booking.find(booking_id)
    mail(to: user_email, subject: "C2Sky booking request##{booking_id} from #{user_name}", from: @booking.email)
  end

mail 调用中传入 reply_to: emailaddressforreply@whatever.com

现在当任何人点击回复时,它将被设置为 emailaddressforreply@whatever.com