我正在使用以下样式解析电子邮件
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
如果存在“回复”字段,我将如何获得它的值?宝石能做到吗?
我正在使用以下样式解析电子邮件
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
方法:
message.reply_to
# => ["user@example.com"]
如果没有设置回复,它将为零:
message.reply_to
# => nil
我建议查看RDoc 文档,特别是Message 对象。这将向您显示您的message
实例上可用的所有方法。