Class: Aws::MailManager::Types::Envelope

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#fromString

The RCPT FROM given by the host from which the email was received.

Returns:

  • (String)


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

#heloString

The HELO used by the host from which the email was received.

Returns:

  • (String)


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

#toArray<String>

All SMTP TO entries given by the host from which the email was received.

Returns:

  • (Array<String>)


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