# encoding: utf-8 # frozen_string_literal: true require 'mail/fields/named_unstructured_field' module Mail # = Comments Field # # The Comments field inherits from UnstructuredField and handles the Comments: # header field in the email. # # Sending comments to a mail message will instantiate a Mail::Field object that # has a CommentsField as its field type. # # An email header can have as many comments fields as it wants. There is no upper # limit, the comments field is also optional (that is, no comment is needed) # # == Examples: # # mail = Mail.new # mail.comments = 'This is a comment' # mail.comments #=> 'This is a comment' # mail[:comments] #=> '# '# '# ['This is a comment', "This is another comment"] class CommentsField < NamedUnstructuredField #:nodoc: NAME = 'Comments' end end