Class: Aws::QConnect::Types::EmailMessageTemplateContent

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

Overview

The content of the message template that applies to the email channel subtype.

Constant Summary collapse

SENSITIVE =
[:subject]

Instance Attribute Summary collapse

Instance Attribute Details

#bodyTypes::EmailMessageTemplateContentBody

The body to use in email messages.



3924
3925
3926
3927
3928
3929
3930
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3924

class EmailMessageTemplateContent < Struct.new(
  :body,
  :headers,
  :subject)
  SENSITIVE = [:subject]
  include Aws::Structure
end

#headersArray<Types::EmailHeader>

The email headers to include in email messages.

Returns:



3924
3925
3926
3927
3928
3929
3930
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3924

class EmailMessageTemplateContent < Struct.new(
  :body,
  :headers,
  :subject)
  SENSITIVE = [:subject]
  include Aws::Structure
end

#subjectString

The subject line, or title, to use in email messages.

Returns:

  • (String)


3924
3925
3926
3927
3928
3929
3930
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3924

class EmailMessageTemplateContent < Struct.new(
  :body,
  :headers,
  :subject)
  SENSITIVE = [:subject]
  include Aws::Structure
end