ReplyToEmailOptions class
Constructors
-
ReplyToEmailOptions({required String body, required bool isHTML, String? from, String? replyTo, String? charset, List<String>? attachments = const [], Map<String, Object>? templateVariables = const {}, String? template, ReplyToEmailOptionsSendStrategyEnum? sendStrategy, bool? useInboxName, bool? html})
-
Returns a new ReplyToEmailOptions instance.
Properties
-
attachments
↔ List<String>?
-
List of uploaded attachments to send with the reply. Optional.
getter/setter pair
-
body
↔ String
-
Body of the reply email you want to send
getter/setter pair
-
charset
↔ String?
-
The charset that your message should be sent with. Optional. Default is UTF-8
getter/setter pair
-
from
↔ String?
-
The from header that should be used. Optional
getter/setter pair
-
hashCode
→ int
-
The hash code for this object.
no setteroverride
-
html
↔ bool?
-
Please note: This property should have been non-nullable! Since the specification file
does not include a default value (using the "default:" property), however, the generated
source code must fall back to having a nullable type.
Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
-
isHTML
↔ bool
-
Is the reply HTML
getter/setter pair
-
replyTo
↔ String?
-
The replyTo header that should be used. Optional
getter/setter pair
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
-
sendStrategy
↔ ReplyToEmailOptionsSendStrategyEnum?
-
How an email should be sent based on its recipients
getter/setter pair
-
template
↔ String?
-
Template ID to use instead of body. Will use template variable map to fill defined variable slots.
getter/setter pair
-
templateVariables
↔ Map<String, Object>?
-
Template variables if using a template
getter/setter pair
-
useInboxName
↔ bool?
-
Optionally use inbox name as display name for sender email address
getter/setter pair