ruby'mikel / mail'回复字段

时间:2012-04-11 23:03:04

标签: ruby-on-rails ruby email mail-gem

我正在使用以下样式解析电子邮件

message = Mail.new(body)   #where body is the RAW source from the email server
message.subject #=> the subject of the message as a string
message.from #=> shows who the email is from

如果存在,我如何获得'reply-to'字段的值?宝石可以这样做吗?

1 个答案:

答案 0 :(得分:10)

您需要reply_to方法:

message.reply_to
# => ["user@example.com"]

如果没有回复集,则为零:

message.reply_to
# => nil

我建议您浏览RDoc documentation,特别是Message object。这将显示message实例上可用的所有方法。