File: comments_field.rb

package info (click to toggle)
ruby-mail 2.9.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,720 kB
  • sloc: ruby: 73,664; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 1,135 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# encoding: utf-8
# frozen_string_literal: true

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]  #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::CommentsField:0x180e1c4
  #  mail['comments'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::CommentsField:0x180e1c4
  #  mail['comments'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::CommentsField:0x180e1c4
  #
  #  mail.comments = "This is another comment"
  #  mail[:comments].map { |c| c.to_s }
  #  #=> ['This is a comment', "This is another comment"]
  class CommentsField < NamedUnstructuredField #:nodoc:
    NAME = 'Comments'
  end
end