如何定义回复地址?

Posted

技术标签:

【中文标题】如何定义回复地址?【英文标题】:How to define a reply-to address? 【发布时间】:2011-08-19 14:10:22 【问题描述】:

如何定义与:from 不同的回复地址?这可能吗?

【问题讨论】:

【参考方案1】:

两种方式:

class Notifications < ActionMailer::Base
  default :from     => 'your_app@your_domain.com',
          :reply_to => 'some_other_address@your_domain.com'
end

或者:

class Contacts < ActionMailer::Base
  def new_contact
    mail( :to       => 'somebody@some_domain.com',
          :from     => 'your_app@your_domain.com',
          :reply_to => 'someone_else@some_other_domain.com')
  end
end

或者您可以混合使用这两种方法。我相信还有更多方法可以做到这一点。

【讨论】:

傻孩子,我到处找,但邮件方法定义:apidock.com/rails/ActionMailer/Base/mail谢谢! 官方文档也显示了这一点:api.rubyonrails.org/classes/ActionMailer/… 据此:igvita.com/2007/07/21/sendmail-spam-filter-tricks-in-rails 他们应该匹配,否则您的邮件将被垃圾邮件软件标记。【参考方案2】:

Rails 5.2 和可能的旧/新版本的解决方案:

修改文件:

config/environments/development.rb

有内容:

Rails.application.configure do
  config.action_mailer.default_options = 
      reply_to:             'test@example.com'
  
end

参考资料:

https://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration

【讨论】:

以上是关于如何定义回复地址?的主要内容,如果未能解决你的问题,请参考以下文章

如何在微信公众平台上面自定义回复,采用java 语言

如何使用 PHPMailer 为不同的电子邮件地址设置不同的回复地址?

smtp / c# - 使用MimeMessage实例时如何设置回复电子邮件地址

捕获退回到无回复电子邮件地址的邮件

在 wp_mail 标头中设置回复地址

使用 Google Apps 设置无回复电子邮件地址 [关闭]