Interface GetStoredEmailResponse
public interface GetStoredEmailResponse
GetStoredEmailResponse
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceDedicated Builder -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Getting builderThe full HTML body of the full messageThe plain text body of the full messagegetFrom()The full 'From' email address entry of the emailThe full list of headers of the MIME upon sendA list of email addresses from the 'To'' fieldJust the email address from the provided 'From'' fieldOnly the body of the email in HTMLThe signature stripped from the bodyOnly the body of the email in plain textSubject of the email
-
Method Details
-
getFrom
String getFrom()The full 'From' email address entry of the emailField is required
- Returns:
- from
-
getSubject
String getSubject()Subject of the emailField is required
- Returns:
- subject
-
getSender
String getSender()Just the email address from the provided 'From'' fieldField is required
- Returns:
- sender
-
getRecipients
String getRecipients()A list of email addresses from the 'To'' fieldField is required
- Returns:
- recipients
-
getBodyHtml
String getBodyHtml()The full HTML body of the full message- Returns:
- bodyHtml
-
getBodyPlain
String getBodyPlain()The plain text body of the full messageField is required
- Returns:
- bodyPlain
-
getStrippedHtml
String getStrippedHtml()Only the body of the email in HTMLField is required
- Returns:
- strippedHtml
-
getStrippedText
String getStrippedText()Only the body of the email in plain textField is required
- Returns:
- strippedText
-
getStrippedSignature
String getStrippedSignature()The signature stripped from the bodyField is required
- Returns:
- strippedSignature
-
getMessageHeaders
The full list of headers of the MIME upon sendField is required
- Returns:
- messageHeaders
-
builder
Getting builder- Returns:
- New Builder instance
-