Class: Xberg::EmailMetadata
- Inherits:
-
Object
- Object
- Xberg::EmailMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#attachments ⇒ Array[String]
readonly
Returns the value of attribute attachments.
-
#bcc_emails ⇒ Array[String]
readonly
Returns the value of attribute bcc_emails.
-
#cc_emails ⇒ Array[String]
readonly
Returns the value of attribute cc_emails.
-
#from_email ⇒ String?
readonly
Returns the value of attribute from_email.
-
#from_name ⇒ String?
readonly
Returns the value of attribute from_name.
-
#message_id ⇒ String?
readonly
Returns the value of attribute message_id.
-
#to_emails ⇒ Array[String]
readonly
Returns the value of attribute to_emails.
Instance Method Summary collapse
-
#initialize ⇒ EmailMetadata
constructor
A new instance of EmailMetadata.
Constructor Details
#initialize ⇒ EmailMetadata
Returns a new instance of EmailMetadata.
742 |
# File 'sig/types.rbs', line 742
def initialize: (?from_email: String, ?from_name: String, ?to_emails: Array[String], ?cc_emails: Array[String], ?bcc_emails: Array[String], ?message_id: String, ?attachments: Array[String]) -> void
|
Instance Attribute Details
#attachments ⇒ Array[String] (readonly)
Returns the value of attribute attachments.
740 741 742 |
# File 'sig/types.rbs', line 740 def @attachments end |
#bcc_emails ⇒ Array[String] (readonly)
Returns the value of attribute bcc_emails.
738 739 740 |
# File 'sig/types.rbs', line 738 def bcc_emails @bcc_emails end |
#cc_emails ⇒ Array[String] (readonly)
Returns the value of attribute cc_emails.
737 738 739 |
# File 'sig/types.rbs', line 737 def cc_emails @cc_emails end |
#from_email ⇒ String? (readonly)
Returns the value of attribute from_email.
734 735 736 |
# File 'sig/types.rbs', line 734 def from_email @from_email end |
#from_name ⇒ String? (readonly)
Returns the value of attribute from_name.
735 736 737 |
# File 'sig/types.rbs', line 735 def from_name @from_name end |
#message_id ⇒ String? (readonly)
Returns the value of attribute message_id.
739 740 741 |
# File 'sig/types.rbs', line 739 def @message_id end |
#to_emails ⇒ Array[String] (readonly)
Returns the value of attribute to_emails.
736 737 738 |
# File 'sig/types.rbs', line 736 def to_emails @to_emails end |