MailSlurp\EmailControllerApi
All URIs are relative to https://golang.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 |
ApplyImapFlagOperation
EmailPreview ApplyImapFlagOperation(ctx, emailId, imapFlagOperationOptions)
Set IMAP flags associated with a message. Only supports 'Seen' flag.
Apply RFC3501 section-2.3.2 IMAP flag operations on an email
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ||
imapFlagOperationOptions | ImapFlagOperationOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
DeleteAllEmails
DeleteAllEmails(ctx, )
Delete all emails in all inboxes.
Deletes all emails in your account. Be careful as emails cannot be recovered
Required Parameters
This endpoint does not need any parameter.
Return type
(empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to ]
DeleteEmail
DeleteEmail(ctx, emailId)
Delete an email
Deletes an email and removes it from the inbox. Deleted emails cannot be recovered.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email to delete |
Return type
(empty response body)
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to ]
DownloadAttachment
string DownloadAttachment(ctx, emailId, attachmentId, optional)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email | |
attachmentId | string | ID of attachment | |
optional | *DownloadAttachmentOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a DownloadAttachmentOpts struct
Name | Type | Description | Notes |
---|---|---|---|
apiKey | optional.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. |
Return type
string
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/octet-stream
[Back to top] [Back to API list] [Back to Model list] [Back to ]
DownloadAttachmentBase64
DownloadAttachmentDto DownloadAttachmentBase64(ctx, emailId, attachmentId)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email | |
attachmentId | string | ID of attachment |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
DownloadBody
string DownloadBody(ctx, emailId)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email |
Return type
string
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: text/plain, text/html
[Back to top] [Back to API list] [Back to Model list] [Back to ]
DownloadBodyBytes
string DownloadBodyBytes(ctx, emailId)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email |
Return type
string
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/octet-stream
[Back to top] [Back to API list] [Back to Model list] [Back to ]
ForwardEmail
SentEmailDto ForwardEmail(ctx, emailId, forwardEmailOptions)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email | |
forwardEmailOptions | ForwardEmailOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetAttachmentMetaData
AttachmentMetaData GetAttachmentMetaData(ctx, emailId, attachmentId)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email | |
attachmentId | string | ID of attachment |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmail
Email GetEmail(ctx, emailId, optional)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ||
optional | *GetEmailOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a GetEmailOpts struct
Name | Type | Description | Notes |
---|---|---|---|
decode | optional.Bool| 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 | [default to false]
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailAttachments
[]AttachmentMetaData GetEmailAttachments(ctx, emailId)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailContentMatch
EmailContentMatchResult GetEmailContentMatch(ctx, emailId, contentMatchOptions)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email to match against | |
contentMatchOptions | ContentMatchOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailCount
CountDto GetEmailCount(ctx, )
Get email count
Required Parameters
This endpoint does not need any parameter.
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailHTML
string GetEmailHTML(ctx, emailId, optional)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ||
optional | *GetEmailHTMLOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a GetEmailHTMLOpts struct
Name | Type | Description | Notes |
---|---|---|---|
decode | optional.Bool| | [default to false]
Return type
string
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: text/html;charset=utf-8, text/html
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailHTMLJson
EmailHtmlDto GetEmailHTMLJson(ctx, emailId, optional)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ||
optional | *GetEmailHTMLJsonOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a GetEmailHTMLJsonOpts struct
Name | Type | Description | Notes |
---|---|---|---|
decode | optional.Bool| | [default to false]
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailHTMLQuery
EmailTextLinesResult GetEmailHTMLQuery(ctx, emailId, htmlSelector)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email to perform HTML query on | |
htmlSelector | 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: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailLinks
EmailLinksResult GetEmailLinks(ctx, emailId)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email to fetch text for |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailPreviewURLs
EmailPreviewUrls GetEmailPreviewURLs(ctx, emailId)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailTextLines
EmailTextLinesResult GetEmailTextLines(ctx, emailId, optional)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email to fetch text for | |
optional | *GetEmailTextLinesOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a GetEmailTextLinesOpts struct
Name | Type | Description | Notes |
---|---|---|---|
decodeHtmlEntities | optional.Bool| Decode HTML entities | lineSeparator | optional.String| Line separator character |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetEmailsPaginated
PageEmailProjection GetEmailsPaginated(ctx, optional)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
optional | *GetEmailsPaginatedOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a GetEmailsPaginatedOpts struct
Name | Type | Description | Notes |
---|---|---|---|
inboxId | optional.Interface of []string | Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account. | |
page | optional.Int32 | Optional page in email list pagination | [default to 0] |
size | optional.Int32 | Optional page size in email list pagination. Maximum size is 100. Use page and sort to page through larger results | [default to 20] |
sort | optional.String | Optional createdAt sort direction ASC or DESC | [default to ASC] |
unreadOnly | optional.Bool | Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly | [default to false] |
searchFilter | optional.String | Optional search filter. Searches email recipients, sender, subject, email address and ID. Does not search email body | |
since | optional.Time | Optional filter emails received after given date time | |
before | optional.Time | Optional filter emails received before given date time |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetGravatarUrlForEmailAddress
GravatarUrl GetGravatarUrlForEmailAddress(ctx, emailAddress, optional)
Get gravatar url for email address
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailAddress | string | ||
optional | *GetGravatarUrlForEmailAddressOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a GetGravatarUrlForEmailAddressOpts struct
Name | Type | Description | Notes |
---|---|---|---|
size | optional.String| |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetLatestEmail
Email GetLatestEmail(ctx, optional)
Get latest email in all inboxes. Most recently received.
Get the newest email in all inboxes or in a passed set of inbox IDs
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
optional | *GetLatestEmailOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a GetLatestEmailOpts struct
Name | Type | Description | Notes |
---|---|---|---|
inboxIds | optional.Interface of []string | Optional set of inboxes to filter by. Only get the latest email from these inbox IDs. If not provided will search across all inboxes |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetLatestEmailInInbox1
Email GetLatestEmailInInbox1(ctx, inboxId)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
inboxId | string | ID of the inbox you want to get the latest email from |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetOrganizationEmailsPaginated
PageEmailProjection GetOrganizationEmailsPaginated(ctx, optional)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
optional | *GetOrganizationEmailsPaginatedOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a GetOrganizationEmailsPaginatedOpts struct
Name | Type | Description | Notes |
---|---|---|---|
inboxId | optional.Interface of []string | Optional inbox ids to filter by. Can be repeated. By default will use all inboxes belonging to your account. | |
page | optional.Int32 | Optional page in email list pagination | [default to 0] |
size | optional.Int32 | Optional page size in email list pagination. Maximum size is 100. Use page and sort to page through larger results | [default to 20] |
sort | optional.String | Optional createdAt sort direction ASC or DESC | [default to ASC] |
unreadOnly | optional.Bool | Optional filter for unread emails only. All emails are considered unread until they are viewed in the dashboard or requested directly | [default to false] |
searchFilter | optional.String | Optional search filter search filter for emails. | |
since | optional.Time | Optional filter emails received after given date time | |
before | optional.Time | Optional filter emails received before given date time |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetRawEmailContents
string GetRawEmailContents(ctx, emailId)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email |
Return type
string
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: text/plain
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetRawEmailJson
RawEmailJson GetRawEmailJson(ctx, emailId)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
GetUnreadEmailCount
UnreadCount GetUnreadEmailCount(ctx, )
Get unread email count
Get number of emails unread. Unread means has not been viewed in dashboard or returned in an email API response
Required Parameters
This endpoint does not need any parameter.
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
MarkAsRead
EmailPreview MarkAsRead(ctx, emailId, optional)
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
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ||
optional | *MarkAsReadOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a MarkAsReadOpts struct
Name | Type | Description | Notes |
---|---|---|---|
read | optional.Bool| What value to assign to email read property. Default true. | [default to true]
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
ReplyToEmail
SentEmailDto ReplyToEmail(ctx, emailId, replyToEmailOptions)
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
.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of the email that should be replied to | |
replyToEmailOptions | ReplyToEmailOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
SendEmailSourceOptional
SendEmailSourceOptional(ctx, inboxId, sendEmailOptions, optional)
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.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
inboxId | string | ID of the inbox you want to send the email from | |
sendEmailOptions | SendEmailOptions | ||
optional | *SendEmailSourceOptionalOpts | optional parameters | nil if no parameters |
Optional Parameters
Optional parameters are passed through a pointer to a SendEmailSourceOptionalOpts struct
Name | Type | Description | Notes |
---|---|---|---|
useDomainPool | optional.Bool| Use domain pool. Optionally create inbox to send from using the mailslurp domain pool. | virtualSend | optional.Bool| Optionally create inbox to send from that is a virtual inbox and won't send to external addresses |
Return type
(empty response body)
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to ]
ValidateEmail
ValidationDto ValidateEmail(ctx, emailId)
Validate email HTML contents
Validate the HTML content of email if HTML is found. Considered valid if no HTML is present.
Required Parameters
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
emailId | string | ID of email |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]