-
public final class ReplyToEmailOptionsOptions for replying to email with API
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumReplyToEmailOptions.SendStrategyHow an email should be sent based on its recipients Values: sINGLEMESSAGE
-
Field Summary
Fields Modifier and Type Field Description private final Stringbodyprivate final BooleanisHTMLprivate final Stringfromprivate final StringreplyToprivate final Stringcharsetprivate final List<String>attachmentsprivate final Map<String, Object>templateVariablesprivate final UUIDtemplateprivate final ReplyToEmailOptions.SendStrategysendStrategyprivate final BooleanuseInboxName
-
Method Summary
Modifier and Type Method Description final StringgetBody()final BooleangetIsHTML()final StringgetFrom()final StringgetReplyTo()final StringgetCharset()final List<String>getAttachments()final Map<String, Object>getTemplateVariables()final UUIDgetTemplate()final ReplyToEmailOptions.SendStrategygetSendStrategy()final BooleangetUseInboxName()-
-
Constructor Detail
-
ReplyToEmailOptions
ReplyToEmailOptions(String body, Boolean isHTML, String from, String replyTo, String charset, List<String> attachments, Map<String, Object> templateVariables, UUID template, ReplyToEmailOptions.SendStrategy sendStrategy, Boolean useInboxName)
- Parameters:
body- Body of the reply email you want to sendisHTML- Is the reply HTMLfrom- The from header that should be used.replyTo- The replyTo header that should be used.charset- The charset that your message should be sent with.attachments- List of uploaded attachments to send with the reply.templateVariables- Template variables if using a templatetemplate- Template ID to use instead of body.sendStrategy- How an email should be sent based on its recipientsuseInboxName- Optionally use inbox name as display name for sender email address
-
-
Method Detail
-
getReplyTo
final String getReplyTo()
-
getCharset
final String getCharset()
-
getAttachments
final List<String> getAttachments()
-
getTemplateVariables
final Map<String, Object> getTemplateVariables()
-
getTemplate
final UUID getTemplate()
-
getSendStrategy
final ReplyToEmailOptions.SendStrategy getSendStrategy()
-
getUseInboxName
final Boolean getUseInboxName()
-
-
-
-