Class: Aws::SES::Types::Template

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb

Overview

The content of the email, composed of a subject line and either an HTML part or a text-only part.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#html_partString

The HTML body of the email.

Returns:

  • (String)


4846
4847
4848
4849
4850
4851
4852
4853
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4846

class Template < Struct.new(
  :template_name,
  :subject_part,
  :text_part,
  :html_part)
  SENSITIVE = []
  include Aws::Structure
end

#subject_partString

The subject line of the email.

Returns:

  • (String)


4846
4847
4848
4849
4850
4851
4852
4853
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4846

class Template < Struct.new(
  :template_name,
  :subject_part,
  :text_part,
  :html_part)
  SENSITIVE = []
  include Aws::Structure
end

#template_nameString

The name of the template. You use this name when you send email using the SendTemplatedEmail or SendBulkTemplatedEmail operations.

Returns:

  • (String)


4846
4847
4848
4849
4850
4851
4852
4853
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4846

class Template < Struct.new(
  :template_name,
  :subject_part,
  :text_part,
  :html_part)
  SENSITIVE = []
  include Aws::Structure
end

#text_partString

The email body that is visible to recipients whose email clients do not display HTML content.

Returns:

  • (String)


4846
4847
4848
4849
4850
4851
4852
4853
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 4846

class Template < Struct.new(
  :template_name,
  :subject_part,
  :text_part,
  :html_part)
  SENSITIVE = []
  include Aws::Structure
end