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.
1185 1186 1187 1188 1189 1190 1191 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 1185 class Envelope < Struct.new( :helo, :from, :to) SENSITIVE = [] include Aws::Structure end |