Class: Aws::MailManager::Types::Envelope
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::Envelope
- Defined in:
- gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb
Overview
The SMTP envelope information of the email.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#from ⇒ String
The RCPT FROM given by the host from which the email was received.
-
#helo ⇒ String
The HELO used by the host from which the email was received.
-
#to ⇒ Array<String>
All SMTP TO entries given by the host from which the email was received.
Instance Attribute Details
#from ⇒ String
The RCPT FROM given by the host from which the email was received.
943 944 945 946 947 948 949 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 943 class Envelope < Struct.new( :from, :helo, :to) SENSITIVE = [] include Aws::Structure end |