我正在使用以下样式解析电子邮件
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'字段的值?宝石可以这样做吗?
答案 0 :(得分:10)
您需要reply_to
方法:
message.reply_to
# => ["user@example.com"]
如果没有回复集,则为零:
message.reply_to
# => nil
我建议您浏览RDoc documentation,特别是Message object。这将显示message
实例上可用的所有方法。