EmailControllerApi
All URIs are relative to https://api.mailslurp.com
Method | HTTP request | Description |
---|---|---|
applyImapFlagOperation | POST /emails/{emailId}/imap-flag-operation | Set IMAP flags associated with a message. Only supports 'Seen' flag. |
deleteAllEmails | DELETE /emails | Delete all emails in all inboxes. |
deleteEmail | DELETE /emails/{emailId} | Delete an email |
downloadAttachment | GET /emails/{emailId}/attachments/{attachmentId} | Get email attachment bytes. Returned as octet-stream with content type header. If you have trouble with byte responses try the downloadAttachmentBase64 response endpoints and convert the base 64 encoded content to a file or string. |
downloadAttachmentBase64 | GET /emails/{emailId}/attachments/{attachmentId}/base64 | Get email attachment as base64 encoded string as an alternative to binary responses. Decode the base64FileContents as a utf-8 encoded string or array of bytes depending on the contentType . |
downloadBody | GET /emails/{emailId}/body | Get email body as string. Returned as plain/text with content type header. |
downloadBodyBytes | GET /emails/{emailId}/body-bytes | Get email body in bytes. Returned as octet-stream with content type header. |
forwardEmail | POST /emails/{emailId}/forward | Forward email to recipients |
getAttachmentMetaData | GET /emails/{emailId}/attachments/{attachmentId}/metadata | Get email attachment metadata. This is the contentType and contentLength of an attachment. To get the individual attachments use the downloadAttachment methods. |
getEmail | GET /emails/{emailId} | Get email content including headers and body. Expects email to exist by ID. For emails that may not have arrived yet use the WaitForController. |
getEmailAttachments | GET /emails/{emailId}/attachments | Get all email attachment metadata. Metadata includes name and size of attachments. |
getEmailContentMatch | POST /emails/{emailId}/contentMatch | Get email content regex pattern match results. Runs regex against email body and returns match groups. |
getEmailCount | GET /emails/emails/count | Get email count |
getEmailHTML | GET /emails/{emailId}/html | Get email content as HTML. For displaying emails in browser context. |
getEmailHTMLJson | GET /emails/{emailId}/html/json | Get email content as HTML in JSON wrapper. For fetching entity decoded HTML content |
getEmailHTMLQuery | GET /emails/{emailId}/htmlQuery | Parse and return text from an email, stripping HTML and decoding encoded characters |
getEmailLinks | GET /emails/{emailId}/links | Parse and return list of links found in an email (only works for HTML content) |
getEmailPreviewURLs | GET /emails/{emailId}/urls | Get email URLs for viewing in browser or downloading |
getEmailTextLines | GET /emails/{emailId}/textLines | Parse and return text from an email, stripping HTML and decoding encoded characters |
getEmailsPaginated | GET /emails | Get all emails in all inboxes in paginated form. Email API list all. |
getGravatarUrlForEmailAddress | GET /emails/gravatarFor | |
getLatestEmail | GET /emails/latest | Get latest email in all inboxes. Most recently received. |
getLatestEmailInInbox1 | GET /emails/latestIn | Get latest email in an inbox. Use WaitForController to get emails that may not have arrived yet. |
getOrganizationEmailsPaginated | GET /emails/organization | Get all organization emails. List team or shared test email accounts |
getRawEmailContents | GET /emails/{emailId}/raw | Get raw email string. Returns unparsed raw SMTP message with headers and body. |
getRawEmailJson | GET /emails/{emailId}/raw/json | Get raw email in JSON. Unparsed SMTP message in JSON wrapper format. |
getUnreadEmailCount | GET /emails/unreadCount | Get unread email count |
markAsRead | PATCH /emails/{emailId}/read | Mark an email as read on unread |
replyToEmail | PUT /emails/{emailId} | Reply to an email |
sendEmailSourceOptional | POST /emails | Send email |
validateEmail | POST /emails/{emailId}/validate | Validate email HTML contents |
Set IMAP flags associated with a message. Only supports 'Seen' flag.
Apply RFC3501 section-2.3.2 IMAP flag operations on an email
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID |
val imapFlagOperationOptions : ImapFlagOperationOptions = // ImapFlagOperationOptions |
val result : EmailPreview = webService.applyImapFlagOperation(emailId, imapFlagOperationOptions)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ||
imapFlagOperationOptions | ImapFlagOperationOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
Delete all emails in all inboxes.
Deletes all emails in your account. Be careful as emails cannot be recovered
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
webService.deleteAllEmails()
Parameters
This endpoint does not need any parameter.
Return type
null (empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
Delete an email
Deletes an email and removes it from the inbox. Deleted emails cannot be recovered.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email to delete
webService.deleteEmail(emailId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email to delete |
Return type
null (empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
Get email attachment bytes. Returned as octet-stream
with content type header. If you have trouble with byte responses try the downloadAttachmentBase64
response endpoints and convert the base 64 encoded content to a file or string.
Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val attachmentId : kotlin.String = attachmentId_example // kotlin.String | ID of attachment
val apiKey : kotlin.String = apiKey_example // kotlin.String | Can pass apiKey in url for this request if you wish to download the file in a browser. Content type will be set to original content type of the attachment file. This is so that browsers can download the file correctly.
val result : kotlin.ByteArray = webService.downloadAttachment(emailId, attachmentId, apiKey)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email | |
attachmentId | kotlin.String | ID of attachment | |
apiKey | kotlin.String | Can pass apiKey in url for this request if you wish to download the file in a browser. Content type will be set to original content type of the attachment file. This is so that browsers can download the file correctly. | [optional] |
Return type
kotlin.ByteArray
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/octet-stream
Get email attachment as base64 encoded string as an alternative to binary responses. Decode the base64FileContents
as a utf-8
encoded string or array of bytes depending on the contentType
.
Returns the specified attachment for a given email as a base 64 encoded string. The response type is application/json. This method is similar to the downloadAttachment
method but allows some clients to get around issues with binary responses.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val attachmentId : kotlin.String = attachmentId_example // kotlin.String | ID of attachment
val result : DownloadAttachmentDto = webService.downloadAttachmentBase64(emailId, attachmentId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email | |
attachmentId | kotlin.String | ID of attachment |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get email body as string. Returned as plain/text
with content type header.
Returns the specified email body for a given email as a string
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val result : kotlin.String = webService.downloadBody(emailId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email |
Return type
kotlin.String
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: text/plain, text/html
Get email body in bytes. Returned as octet-stream
with content type header.
Returns the specified email body for a given email as a stream / array of bytes.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val result : kotlin.ByteArray = webService.downloadBodyBytes(emailId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email |
Return type
kotlin.ByteArray
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/octet-stream
Forward email to recipients
Forward an existing email to new recipients. The sender of the email will be the inbox that received the email you are forwarding. You can override the sender with the from
option. Note you must have access to the from address in MailSlurp to use the override. For more control consider fetching the email and sending it a new using the send email endpoints.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val forwardEmailOptions : ForwardEmailOptions = // ForwardEmailOptions |
val result : SentEmailDto = webService.forwardEmail(emailId, forwardEmailOptions)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email | |
forwardEmailOptions | ForwardEmailOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
Get email attachment metadata. This is the contentType
and contentLength
of an attachment. To get the individual attachments use the downloadAttachment
methods.
Returns the metadata such as name and content-type for a given attachment and email.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val attachmentId : kotlin.String = attachmentId_example // kotlin.String | ID of attachment
val result : AttachmentMetaData = webService.getAttachmentMetaData(emailId, attachmentId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email | |
attachmentId | kotlin.String | ID of attachment |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get email content including headers and body. Expects email to exist by ID. For emails that may not have arrived yet use the WaitForController.
Returns a email summary object with headers and content. To retrieve the raw unparsed email use the getRawEmail endpoints
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID |
val decode : kotlin.Boolean = true // kotlin.Boolean | Decode email body quoted-printable encoding to plain text. SMTP servers often encode text using quoted-printable format (for instance `=D7`). This can be a pain for testing
val result : Email = webService.getEmail(emailId, decode)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ||
decode | kotlin.Boolean | Decode email body quoted-printable encoding to plain text. SMTP servers often encode text using quoted-printable format (for instance =D7 ). This can be a pain for testing | [optional] [default to false] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get all email attachment metadata. Metadata includes name and size of attachments.
Returns an array of attachment metadata such as name and content-type for a given email if present.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val result : kotlin.collections.List<AttachmentMetaData> = webService.getEmailAttachments(emailId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get email content regex pattern match results. Runs regex against email body and returns match groups.
Return the matches for a given Java style regex pattern. Do not include the typical /
at start or end of regex in some languages. Given an example your code is: 12345
the pattern to extract match looks like code is: (d{6})
. This will return an array of matches with the first matching the entire pattern and the subsequent matching the groups: ['code is: 123456', '123456']
See https://docs.oracle.com/javase/8/docs/api/java/util/regex/ for more information of available patterns.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email to match against
val contentMatchOptions : ContentMatchOptions = // ContentMatchOptions |
val result : EmailContentMatchResult = webService.getEmailContentMatch(emailId, contentMatchOptions)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email to match against | |
contentMatchOptions | ContentMatchOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
Get email count
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val result : CountDto = webService.getEmailCount()
Parameters
This endpoint does not need any parameter.
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get email content as HTML. For displaying emails in browser context.
Retrieve email content as HTML response for viewing in browsers. Decodes quoted-printable entities and converts charset to UTF-8. Pass your API KEY as a request parameter when viewing in a browser: ?apiKey=xxx
. Returns content-type text/html;charset=utf-8
so you must call expecting that content response not JSON. For JSON response see the getEmailHTMLJson
method.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID |
val decode : kotlin.Boolean = true // kotlin.Boolean |
val result : kotlin.String = webService.getEmailHTML(emailId, decode)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ||
decode | kotlin.Boolean | [optional] [default to false] |
Return type
kotlin.String
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: text/html;charset=utf-8, text/html
Get email content as HTML in JSON wrapper. For fetching entity decoded HTML content
Retrieve email content as HTML response. Decodes quoted-printable entities and converts charset to UTF-8. Returns content-type application/json;charset=utf-8
so you must call expecting that content response not JSON.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID |
val decode : kotlin.Boolean = true // kotlin.Boolean |
val result : EmailHtmlDto = webService.getEmailHTMLJson(emailId, decode)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ||
decode | kotlin.Boolean | [optional] [default to false] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Parse and return text from an email, stripping HTML and decoding encoded characters
Parse an email body and return the content as an array of text. HTML parsing uses JSoup which supports JQuery/CSS style selectors
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email to perform HTML query on
val htmlSelector : kotlin.String = htmlSelector_example // kotlin.String | HTML selector to search for. Uses JQuery/JSoup/CSS style selector like '.my-div' to match content. See https://jsoup.org/apidocs/org/jsoup/select/ for more information.
val result : EmailTextLinesResult = webService.getEmailHTMLQuery(emailId, htmlSelector)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email to perform HTML query on | |
htmlSelector | kotlin.String | HTML selector to search for. Uses JQuery/JSoup/CSS style selector like '.my-div' to match content. See https://jsoup.org/apidocs/org/jsoup/select/ for more information. |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Parse and return list of links found in an email (only works for HTML content)
HTML parsing uses JSoup and UNIX line separators. Searches content for href attributes
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email to fetch text for
val result : EmailLinksResult = webService.getEmailLinks(emailId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email to fetch text for |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get email URLs for viewing in browser or downloading
Get a list of URLs for email content as text/html or raw SMTP message for viewing the message in a browser.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID |
val result : EmailPreviewUrls = webService.getEmailPreviewURLs(emailId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Parse and return text from an email, stripping HTML and decoding encoded characters
Parse an email body and return the content as an array of strings. HTML parsing uses JSoup and UNIX line separators.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email to fetch text for
val decodeHtmlEntities : kotlin.Boolean = true // kotlin.Boolean | Decode HTML entities
val lineSeparator : kotlin.String = lineSeparator_example // kotlin.String | Line separator character
val result : EmailTextLinesResult = webService.getEmailTextLines(emailId, decodeHtmlEntities, lineSeparator)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email to fetch text for | |
decodeHtmlEntities | kotlin.Boolean | Decode HTML entities | [optional] |
lineSeparator | kotlin.String | Line separator character | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get all emails in all inboxes in paginated form. Email API list all.
By default returns all emails across all inboxes sorted by ascending created at date. Responses are paginated. You can restrict results to a list of inbox IDs. You can also filter out read messages
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val inboxId : kotlin.collections.List<java.util.UUID> = // kotlin.collections.List<java.util.UUID> | Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account.
val page : kotlin.Int = 56 // kotlin.Int | Optional page in email list pagination
val size : kotlin.Int = 56 // kotlin.Int | Optional page size in email list pagination. Maximum size is 100. Use page and sort to page through larger results
val sort : kotlin.String = sort_example // kotlin.String | Optional createdAt sort direction ASC or DESC
val unreadOnly : kotlin.Boolean = true // kotlin.Boolean | Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly
val searchFilter : kotlin.String = searchFilter_example // kotlin.String | Optional search filter. Searches email recipients, sender, subject, email address and ID. Does not search email body
val since : java.time.OffsetDateTime = 2013-10-20T19:20:30+01:00 // java.time.OffsetDateTime | Optional filter emails received after given date time
val before : java.time.OffsetDateTime = 2013-10-20T19:20:30+01:00 // java.time.OffsetDateTime | Optional filter emails received before given date time
val result : PageEmailProjection = webService.getEmailsPaginated(inboxId, page, size, sort, unreadOnly, searchFilter, since, before)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | kotlin.collections.List | Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account. | [optional] |
page | kotlin.Int | Optional page in email list pagination | [optional] [default to 0] |
size | kotlin.Int | Optional page size in email list pagination. Maximum size is 100. Use page and sort to page through larger results | [optional] [default to 20] |
sort | kotlin.String | Optional createdAt sort direction ASC or DESC | [optional] [default to ASC] [enum: ASC, DESC] |
unreadOnly | kotlin.Boolean | Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly | [optional] [default to false] |
searchFilter | kotlin.String | Optional search filter. Searches email recipients, sender, subject, email address and ID. Does not search email body | [optional] |
since | java.time.OffsetDateTime | Optional filter emails received after given date time | [optional] |
before | java.time.OffsetDateTime | Optional filter emails received before given date time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get gravatar url for email address
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailAddress : kotlin.String = emailAddress_example // kotlin.String |
val size : kotlin.String = size_example // kotlin.String |
val result : GravatarUrl = webService.getGravatarUrlForEmailAddress(emailAddress, size)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailAddress | kotlin.String | ||
size | kotlin.String | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get latest email in all inboxes. Most recently received.
Get the newest email in all inboxes or in a passed set of inbox IDs
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val inboxIds : kotlin.collections.List<java.util.UUID> = // kotlin.collections.List<java.util.UUID> | Optional set of inboxes to filter by. Only get the latest email from these inbox IDs. If not provided will search across all inboxes
val result : Email = webService.getLatestEmail(inboxIds)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxIds | kotlin.collections.List | Optional set of inboxes to filter by. Only get the latest email from these inbox IDs. If not provided will search across all inboxes | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get latest email in an inbox. Use WaitForController
to get emails that may not have arrived yet.
Get the newest email in all inboxes or in a passed set of inbox IDs
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val inboxId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of the inbox you want to get the latest email from
val result : Email = webService.getLatestEmailInInbox1(inboxId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | java.util.UUID | ID of the inbox you want to get the latest email from |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get all organization emails. List team or shared test email accounts
By default returns all emails across all team inboxes sorted by ascending created at date. Responses are paginated. You can restrict results to a list of inbox IDs. You can also filter out read messages
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val inboxId : kotlin.collections.List<java.util.UUID> = // kotlin.collections.List<java.util.UUID> | Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account.
val page : kotlin.Int = 56 // kotlin.Int | Optional page in email list pagination
val size : kotlin.Int = 56 // kotlin.Int | Optional page size in email list pagination. Maximum size is 100. Use page and sort to page through larger results
val sort : kotlin.String = sort_example // kotlin.String | Optional createdAt sort direction ASC or DESC
val unreadOnly : kotlin.Boolean = true // kotlin.Boolean | Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly
val searchFilter : kotlin.String = searchFilter_example // kotlin.String | Optional search filter search filter for emails.
val since : java.time.OffsetDateTime = 2013-10-20T19:20:30+01:00 // java.time.OffsetDateTime | Optional filter emails received after given date time
val before : java.time.OffsetDateTime = 2013-10-20T19:20:30+01:00 // java.time.OffsetDateTime | Optional filter emails received before given date time
val result : PageEmailProjection = webService.getOrganizationEmailsPaginated(inboxId, page, size, sort, unreadOnly, searchFilter, since, before)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | kotlin.collections.List | Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account. | [optional] |
page | kotlin.Int | Optional page in email list pagination | [optional] [default to 0] |
size | kotlin.Int | Optional page size in email list pagination. Maximum size is 100. Use page and sort to page through larger results | [optional] [default to 20] |
sort | kotlin.String | Optional createdAt sort direction ASC or DESC | [optional] [default to ASC] [enum: ASC, DESC] |
unreadOnly | kotlin.Boolean | Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly | [optional] [default to false] |
searchFilter | kotlin.String | Optional search filter search filter for emails. | [optional] |
since | java.time.OffsetDateTime | Optional filter emails received after given date time | [optional] |
before | java.time.OffsetDateTime | Optional filter emails received before given date time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get raw email string. Returns unparsed raw SMTP message with headers and body.
Returns a raw, unparsed, and unprocessed email. If your client has issues processing the response it is likely due to the response content-type which is text/plain. If you need a JSON response content-type use the getRawEmailJson endpoint
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val result : kotlin.String = webService.getRawEmailContents(emailId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email |
Return type
kotlin.String
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: text/plain
Get raw email in JSON. Unparsed SMTP message in JSON wrapper format.
Returns a raw, unparsed, and unprocessed email wrapped in a JSON response object for easier handling when compared with the getRawEmail text/plain response
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val result : RawEmailJson = webService.getRawEmailJson(emailId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Get unread email count
Get number of emails unread. Unread means has not been viewed in dashboard or returned in an email API response
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val result : UnreadCount = webService.getUnreadEmailCount()
Parameters
This endpoint does not need any parameter.
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Mark an email as read on unread
Marks an email as read or unread. Pass boolean read flag to set value. This is useful if you want to read an email but keep it as unread
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID |
val read : kotlin.Boolean = true // kotlin.Boolean | What value to assign to email read property. Default true.
val result : EmailPreview = webService.markAsRead(emailId, read)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ||
read | kotlin.Boolean | What value to assign to email read property. Default true. | [optional] [default to true] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
Reply to an email
Send the reply to the email sender or reply-to and include same subject cc bcc etc. Reply to an email and the contents will be sent with the existing subject to the emails to
, cc
, and bcc
.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of the email that should be replied to
val replyToEmailOptions : ReplyToEmailOptions = // ReplyToEmailOptions |
val result : SentEmailDto = webService.replyToEmail(emailId, replyToEmailOptions)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of the email that should be replied to | |
replyToEmailOptions | ReplyToEmailOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
Send email
Alias for InboxController.sendEmail
method - see original method for full details. Sends an email from a given inbox that you have created. If no inbox is supplied a random inbox will be created for you and used to send the email.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val sendEmailOptions : SendEmailOptions = // SendEmailOptions |
val inboxId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of the inbox you want to send the email from
val useDomainPool : kotlin.Boolean = true // kotlin.Boolean | Use domain pool. Optionally create inbox to send from using the mailslurp domain pool.
val virtualSend : kotlin.Boolean = true // kotlin.Boolean | Optionally create inbox to send from that is a virtual inbox and won't send to external addresses
webService.sendEmailSourceOptional(sendEmailOptions, inboxId, useDomainPool, virtualSend)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
sendEmailOptions | SendEmailOptions | ||
inboxId | java.util.UUID | ID of the inbox you want to send the email from | [optional] |
useDomainPool | kotlin.Boolean | Use domain pool. Optionally create inbox to send from using the mailslurp domain pool. | [optional] |
virtualSend | kotlin.Boolean | Optionally create inbox to send from that is a virtual inbox and won't send to external addresses | [optional] |
Return type
null (empty response body)
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: Not defined
Validate email HTML contents
Validate the HTML content of email if HTML is found. Considered valid if no HTML is present.
Example
// Import classes:
//import com.mailslurp.*
//import com.mailslurp.infrastructure.*
//import com.mailslurp.models.*
val apiClient = ApiClient()
val webService = apiClient.createWebservice(EmailControllerApi::class.java)
val emailId : java.util.UUID = 38400000-8cf0-11bd-b23e-10b96e4ef00d // java.util.UUID | ID of email
val result : ValidationDto = webService.validateEmail(emailId)
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailId | java.util.UUID | ID of email |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /