Class: Aws::Pinpoint::Types::JourneyEmailMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::JourneyEmailMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass JourneyEmailMessage data as a hash:
{
from_address: "__string",
}
Specifies the “From” address for an email message that’s sent to participants in a journey.
Instance Attribute Summary collapse
-
#from_address ⇒ String
The verified email address to send the email message from.
Instance Attribute Details
#from_address ⇒ String
The verified email address to send the email message from. The default address is the FromAddress specified for the email channel for the application.
9891 9892 9893 9894 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 9891 class JourneyEmailMessage < Struct.new( :from_address) include Aws::Structure end |