Sha256: 683c6e9e25f3333f0f9c1c5d0043615b17edda0e837a86c4c064a88d9c6b1683

Contents?: true

Size: 1.5 KB

Versions: 14

Compression:

Stored size: 1.5 KB

Contents

# 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 <mikel@test.lindsaar.net>, ada@test.lindsaar.net'
  #  mail.reply_to    #=> ['mikel@test.lindsaar.net', 'ada@test.lindsaar.net']
  #  mail[:reply_to]  #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ReplyToField:0x180e1c4
  #  mail['reply-to'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ReplyToField:0x180e1c4
  #  mail['Reply-To'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ReplyToField:0x180e1c4
  #
  #  mail[:reply_to].encoded   #=> 'Reply-To: Mikel Lindsaar <mikel@test.lindsaar.net>, ada@test.lindsaar.net\r\n'
  #  mail[:reply_to].decoded   #=> 'Mikel Lindsaar <mikel@test.lindsaar.net>, ada@test.lindsaar.net'
  #  mail[:reply_to].addresses #=> ['mikel@test.lindsaar.net', 'ada@test.lindsaar.net']
  #  mail[:reply_to].formatted #=> ['Mikel Lindsaar <mikel@test.lindsaar.net>', 'ada@test.lindsaar.net']
  class ReplyToField < CommonAddressField #:nodoc:
    NAME = 'Reply-To'
  end
end

Version data entries

14 entries across 14 versions & 5 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/mail-2.8.1/lib/mail/fields/reply_to_field.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/mail-2.8.1/lib/mail/fields/reply_to_field.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/mail-2.8.1/lib/mail/fields/reply_to_field.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/mail-2.8.1/lib/mail/fields/reply_to_field.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/mail-2.8.1/lib/mail/fields/reply_to_field.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/mail-2.8.1/lib/mail/fields/reply_to_field.rb
mail-2.8.1 lib/mail/fields/reply_to_field.rb
mail-2.8.1.rc2 lib/mail/fields/reply_to_field.rb
mail-2.8.0.1 lib/mail/fields/reply_to_field.rb
mail-2.8.0.1.rc1 lib/mail/fields/reply_to_field.rb
mail-2.8.0 lib/mail/fields/reply_to_field.rb
mail-2.8.0.rc3 lib/mail/fields/reply_to_field.rb
mail-2.8.0.rc2 lib/mail/fields/reply_to_field.rb
mail-2.8.0.rc1 lib/mail/fields/reply_to_field.rb