# encoding: utf-8 # frozen_string_literal: true require 'mail/fields/common_address_field' module Mail # = Reply-To Field # # The Reply-To field inherits reply-to StructuredField and handles the Reply-To: header # field in the email. # # Sending reply_to to a mail message will instantiate a Mail::Field object that # has a ReplyToField as its field type. This includes all Mail::CommonAddress # module instance metods. # # Only one Reply-To field can appear in a header, though it can have multiple # addresses and groups of addresses. # # == Examples: # # mail = Mail.new # mail.reply_to = 'Mikel Lindsaar , ada@test.lindsaar.net' # mail.reply_to #=> ['mikel@test.lindsaar.net', 'ada@test.lindsaar.net'] # mail[:reply_to] #=> '# '# '# 'Reply-To: Mikel Lindsaar , ada@test.lindsaar.net\r\n' # mail[:reply_to].decoded #=> 'Mikel Lindsaar , ada@test.lindsaar.net' # mail[:reply_to].addresses #=> ['mikel@test.lindsaar.net', 'ada@test.lindsaar.net'] # mail[:reply_to].formatted #=> ['Mikel Lindsaar ', 'ada@test.lindsaar.net'] class ReplyToField < CommonAddressField #:nodoc: NAME = 'Reply-To' end end