I'm parsing an email using the below style
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
How would I get a value of the 'reply-to' field if it exists? Can the gem do this?