mailslurp.api.InboxControllerApi
Load the API package
All URIs are relative to https://api.mailslurp.com
Method | HTTP request | Description |
---|---|---|
createInbox | POST /inboxes | Create an inbox email address. An inbox has a real email address and can send and receive emails. Inboxes can be either SMTP or HTTP inboxes. |
createInboxRuleset | POST /inboxes/{inboxId}/rulesets | Create an inbox ruleset |
createInboxWithDefaults | POST /inboxes/withDefaults | Create an inbox with default options. Uses MailSlurp domain pool address and is private. |
createInboxWithOptions | POST /inboxes/withOptions | Create an inbox with options. Extended options for inbox creation. |
deleteAllInboxEmails | DELETE /inboxes/{inboxId}/deleteAllInboxEmails | Delete all emails in a given inboxes. |
deleteAllInboxes | DELETE /inboxes | Delete all inboxes |
deleteInbox | DELETE /inboxes/{inboxId} | Delete inbox |
doesInboxExist | GET /inboxes/exists | Does inbox exist |
flushExpired | DELETE /inboxes/expired | Remove expired inboxes |
getAllInboxes | GET /inboxes/paginated | List All Inboxes Paginated |
getEmails | GET /inboxes/{inboxId}/emails | Get emails in an Inbox. This method is not idempotent as it allows retries and waits if you want certain conditions to be met before returning. For simple listing and sorting of known emails use the email controller instead. |
getImapSmtpAccess | GET /inboxes/imap-smtp-access | |
getInbox | GET /inboxes/{inboxId} | Get Inbox. Returns properties of an inbox. |
getInboxByEmailAddress | GET /inboxes/byEmailAddress | Search for an inbox with the provided email address |
getInboxCount | GET /inboxes/count | Get total inbox count |
getInboxEmailCount | GET /inboxes/{inboxId}/emails/count | Get email count in inbox |
getInboxEmailsPaginated | GET /inboxes/{inboxId}/emails/paginated | Get inbox emails paginated |
getInboxIds | GET /inboxes/ids | Get all inbox IDs |
getInboxSentEmails | GET /inboxes/{inboxId}/sent | Get Inbox Sent Emails |
getInboxTags | GET /inboxes/tags | Get inbox tags |
getInboxes | GET /inboxes | List Inboxes and email addresses |
getLatestEmailInInbox | GET /inboxes/getLatestEmail | Get latest email in an inbox. Use WaitForController to get emails that may not have arrived yet. |
getOrganizationInboxes | GET /inboxes/organization | List Organization Inboxes Paginated |
listInboxRulesets | GET /inboxes/{inboxId}/rulesets | List inbox rulesets |
listInboxTrackingPixels | GET /inboxes/{inboxId}/tracking-pixels | List inbox tracking pixels |
sendEmail | POST /inboxes/{inboxId} | Send Email |
sendEmailAndConfirm | POST /inboxes/{inboxId}/confirm | Send email and return sent confirmation |
sendSmtpEnvelope | POST /inboxes/{inboxId}/smtp-envelope | Send email using an SMTP mail envelope and message body and return sent confirmation |
sendTestEmail | POST /inboxes/{inboxId}/send-test-email | Send a test email to inbox |
setInboxFavourited | PUT /inboxes/{inboxId}/favourite | Set inbox favourited state |
updateInbox | PATCH /inboxes/{inboxId} | Update Inbox. Change name and description. Email address is not editable. |
InboxDto createInbox(emailAddress, tags, name, description, useDomainPool, favourite, expiresAt, expiresIn, allowTeamAccess, inboxType, virtualInbox)
Create an inbox email address. An inbox has a real email address and can send and receive emails. Inboxes can be either SMTP
or HTTP
inboxes.
Create a new inbox and with a randomized email address to send and receive from. Pass emailAddress parameter if you wish to use a specific email address. Creating an inbox is required before sending or receiving emails. If writing tests it is recommended that you create a new inbox during each test method so that it is unique and empty.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final emailAddress = emailAddress_example; // String | A custom email address to use with the inbox. Defaults to null. When null MailSlurp will assign a random email address to the inbox such as `123@mailslurp.com`. If you use the `useDomainPool` option when the email address is null it will generate an email address with a more varied domain ending such as `123@mailslurp.info` or `123@mailslurp.biz`. When a custom email address is provided the address is split into a domain and the domain is queried against your user. If you have created the domain in the MailSlurp dashboard and verified it you can use any email address that ends with the domain. Note domain types must match the inbox type - so `SMTP` inboxes will only work with `SMTP` type domains. Avoid `SMTP` inboxes if you need to send emails as they can only receive. Send an email to this address and the inbox will receive and store it for you. To retrieve the email use the Inbox and Email Controller endpoints with the inbox ID.
final tags = []; // List<String> | Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI.
final name = name_example; // String | Optional name of the inbox. Displayed in the dashboard for easier search and used as the sender name when sending emails.
final description = description_example; // String | Optional description of the inbox for labelling purposes. Is shown in the dashboard and can be used with
final useDomainPool = true; // bool | Use the MailSlurp domain name pool with this inbox when creating the email address. Defaults to null. If enabled the inbox will be an email address with a domain randomly chosen from a list of the MailSlurp domains. This is useful when the default `@mailslurp.com` email addresses used with inboxes are blocked or considered spam by a provider or receiving service. When domain pool is enabled an email address will be generated ending in `@mailslurp.{world,info,xyz,...}` . This means a TLD is randomly selecting from a list of `.biz`, `.info`, `.xyz` etc to add variance to the generated email addresses. When null or false MailSlurp uses the default behavior of `@mailslurp.com` or custom email address provided by the emailAddress field. Note this feature is only available for `HTTP` inbox types.
final favourite = true; // bool | Is the inbox a favorite. Marking an inbox as a favorite is typically done in the dashboard for quick access or filtering
final expiresAt = 2013-10-20T19:20:30+01:00; // DateTime | Optional inbox expiration date. If null then this inbox is permanent and the emails in it won't be deleted. If an expiration date is provided or is required by your plan the inbox will be closed when the expiration time is reached. Expired inboxes still contain their emails but can no longer send or receive emails. An ExpiredInboxRecord is created when an inbox and the email address and inbox ID are recorded. The expiresAt property is a timestamp string in ISO DateTime Format yyyy-MM-dd'T'HH:mm:ss.SSSXXX.
final expiresIn = 789; // int | Number of milliseconds that inbox should exist for
final allowTeamAccess = true; // bool | DEPRECATED (team access is always true). Grant team access to this inbox and the emails that belong to it for team members of your organization.
final inboxType = inboxType_example; // String | HTTP (default) or SMTP inbox type. HTTP inboxes are default and best solution for most cases. SMTP inboxes are more reliable for public inbound email consumption (but do not support sending emails). When using custom domains the domain type must match the inbox type. HTTP inboxes are processed by AWS SES while SMTP inboxes use a custom mail server running at `mx.mailslurp.com`.
final virtualInbox = true; // bool | Virtual inbox prevents any outbound emails from being sent. It creates sent email records but will never send real emails to recipients. Great for testing and faking email sending.
try {
final result = api_instance.createInbox(emailAddress, tags, name, description, useDomainPool, favourite, expiresAt, expiresIn, allowTeamAccess, inboxType, virtualInbox);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->createInbox: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailAddress | String | A custom email address to use with the inbox. Defaults to null. When null MailSlurp will assign a random email address to the inbox such as 123@mailslurp.com . If you use the useDomainPool option when the email address is null it will generate an email address with a more varied domain ending such as 123@mailslurp.info or 123@mailslurp.biz . When a custom email address is provided the address is split into a domain and the domain is queried against your user. If you have created the domain in the MailSlurp dashboard and verified it you can use any email address that ends with the domain. Note domain types must match the inbox type - so SMTP inboxes will only work with SMTP type domains. Avoid SMTP inboxes if you need to send emails as they can only receive. Send an email to this address and the inbox will receive and store it for you. To retrieve the email use the Inbox and Email Controller endpoints with the inbox ID. | [optional] |
tags | List | Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI. | [optional] [default to const []] |
name | String | Optional name of the inbox. Displayed in the dashboard for easier search and used as the sender name when sending emails. | [optional] |
description | String | Optional description of the inbox for labelling purposes. Is shown in the dashboard and can be used with | [optional] |
useDomainPool | bool | Use the MailSlurp domain name pool with this inbox when creating the email address. Defaults to null. If enabled the inbox will be an email address with a domain randomly chosen from a list of the MailSlurp domains. This is useful when the default @mailslurp.com email addresses used with inboxes are blocked or considered spam by a provider or receiving service. When domain pool is enabled an email address will be generated ending in @mailslurp.{world,info,xyz,...} . This means a TLD is randomly selecting from a list of .biz , .info , .xyz etc to add variance to the generated email addresses. When null or false MailSlurp uses the default behavior of @mailslurp.com or custom email address provided by the emailAddress field. Note this feature is only available for HTTP inbox types. | [optional] |
favourite | bool | Is the inbox a favorite. Marking an inbox as a favorite is typically done in the dashboard for quick access or filtering | [optional] |
expiresAt | DateTime | Optional inbox expiration date. If null then this inbox is permanent and the emails in it won't be deleted. If an expiration date is provided or is required by your plan the inbox will be closed when the expiration time is reached. Expired inboxes still contain their emails but can no longer send or receive emails. An ExpiredInboxRecord is created when an inbox and the email address and inbox ID are recorded. The expiresAt property is a timestamp string in ISO DateTime Format yyyy-MM-dd'T'HH:mm:ss.SSSXXX. | [optional] |
expiresIn | int | Number of milliseconds that inbox should exist for | [optional] |
allowTeamAccess | bool | DEPRECATED (team access is always true). Grant team access to this inbox and the emails that belong to it for team members of your organization. | [optional] |
inboxType | String | HTTP (default) or SMTP inbox type. HTTP inboxes are default and best solution for most cases. SMTP inboxes are more reliable for public inbound email consumption (but do not support sending emails). When using custom domains the domain type must match the inbox type. HTTP inboxes are processed by AWS SES while SMTP inboxes use a custom mail server running at mx.mailslurp.com . | [optional] |
virtualInbox | bool | Virtual inbox prevents any outbound emails from being sent. It creates sent email records but will never send real emails to recipients. Great for testing and faking email sending. | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
InboxRulesetDto createInboxRuleset(inboxId, createInboxRulesetOptions)
Create an inbox ruleset
Create a new inbox rule for forwarding, blocking, and allowing emails when sending and receiving
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | inboxId
final createInboxRulesetOptions = CreateInboxRulesetOptions(); // CreateInboxRulesetOptions |
try {
final result = api_instance.createInboxRuleset(inboxId, createInboxRulesetOptions);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->createInboxRuleset: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | inboxId | |
createInboxRulesetOptions | CreateInboxRulesetOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
InboxDto createInboxWithDefaults()
Create an inbox with default options. Uses MailSlurp domain pool address and is private.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
try {
final result = api_instance.createInboxWithDefaults();
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->createInboxWithDefaults: $en');
}
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 ]
InboxDto createInboxWithOptions(createInboxDto)
Create an inbox with options. Extended options for inbox creation.
Additional endpoint that allows inbox creation with request body options. Can be more flexible that other methods for some clients.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final createInboxDto = CreateInboxDto(); // CreateInboxDto |
try {
final result = api_instance.createInboxWithOptions(createInboxDto);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->createInboxWithOptions: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
createInboxDto | CreateInboxDto |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
deleteAllInboxEmails(inboxId)
Delete all emails in a given inboxes.
Deletes all emails in an inbox. Be careful as emails cannot be recovered
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
try {
api_instance.deleteAllInboxEmails(inboxId);
} catch (e) {
print('Exception when calling InboxControllerApi->deleteAllInboxEmails: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String |
Return type
void (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 ]
deleteAllInboxes()
Delete all inboxes
Permanently delete all inboxes and associated email addresses. This will also delete all emails within the inboxes. Be careful as inboxes cannot be recovered once deleted. Note: deleting inboxes will not impact your usage limits. Monthly inbox creation limits are based on how many inboxes were created in the last 30 days, not how many inboxes you currently have.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
try {
api_instance.deleteAllInboxes();
} catch (e) {
print('Exception when calling InboxControllerApi->deleteAllInboxes: $en');
}
Parameters
This endpoint does not need any parameter.
Return type
void (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 ]
deleteInbox(inboxId)
Delete inbox
Permanently delete an inbox and associated email address as well as all emails within the given inbox. This action cannot be undone. Note: deleting an inbox will not affect your account usage. Monthly inbox usage is based on how many inboxes you create within 30 days, not how many exist at time of request.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
try {
api_instance.deleteInbox(inboxId);
} catch (e) {
print('Exception when calling InboxControllerApi->deleteInbox: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String |
Return type
void (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 ]
InboxExistsDto doesInboxExist(emailAddress)
Does inbox exist
Check if inboxes exist by email address. Useful if you are sending emails to mailslurp addresses
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final emailAddress = emailAddress_example; // String | Email address
try {
final result = api_instance.doesInboxExist(emailAddress);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->doesInboxExist: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailAddress | String | Email address |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
FlushExpiredInboxesResult flushExpired(before)
Remove expired inboxes
Remove any expired inboxes for your account (instead of waiting for scheduled removal on server)
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final before = 2013-10-20T19:20:30+01:00; // DateTime | Optional expired at before flag to flush expired inboxes that have expired before the given time
try {
final result = api_instance.flushExpired(before);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->flushExpired: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
before | DateTime | Optional expired at before flag to flush expired inboxes that have expired before the given time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
PageInboxProjection getAllInboxes(page, size, sort, favourite, search, tag, teamAccess, since, before)
List All Inboxes Paginated
List inboxes in paginated form. The results are available on the content
property of the returned object. This method allows for page (zero based), page size (how many results to return), and a sort direction (based on createdAt time). You Can also filter by whether an inbox is favorited or use email address pattern. This method is the recommended way to query inboxes. The alternative getInboxes
method returns a full list of inboxes but is limited to 100 results.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final page = 56; // int | Optional page in list pagination
final size = 56; // int | Optional page size in list pagination
final sort = sort_example; // String | Optional createdAt sort direction ASC or DESC
final favourite = true; // bool | Optionally filter results for favourites only
final search = search_example; // String | Optionally filter by search words partial matching ID, tags, name, and email address
final tag = tag_example; // String | Optionally filter by tags. Will return inboxes that include given tags
final teamAccess = true; // bool | DEPRECATED. Optionally filter by team access.
final since = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created after given date time
final before = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created before given date time
try {
final result = api_instance.getAllInboxes(page, size, sort, favourite, search, tag, teamAccess, since, before);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getAllInboxes: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
page | int | Optional page in list pagination | [optional] [default to 0] |
size | int | Optional page size in list pagination | [optional] [default to 20] |
sort | String | Optional createdAt sort direction ASC or DESC | [optional] [default to 'ASC'] |
favourite | bool | Optionally filter results for favourites only | [optional] [default to false] |
search | String | Optionally filter by search words partial matching ID, tags, name, and email address | [optional] |
tag | String | Optionally filter by tags. Will return inboxes that include given tags | [optional] |
teamAccess | bool | DEPRECATED. Optionally filter by team access. | [optional] |
since | DateTime | Optional filter by created after given date time | [optional] |
before | DateTime | Optional filter by created before given date time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
List
getEmails(inboxId, size, limit, sort, retryTimeout, delayTimeout, minCount, unreadOnly, before, since)
Get emails in an Inbox. This method is not idempotent as it allows retries and waits if you want certain conditions to be met before returning. For simple listing and sorting of known emails use the email controller instead.
List emails that an inbox has received. Only emails that are sent to the inbox's email address will appear in the inbox. It may take several seconds for any email you send to an inbox's email address to appear in the inbox. To make this endpoint wait for a minimum number of emails use the minCount
parameter. The server will retry the inbox database until the minCount
is satisfied or the retryTimeout
is reached
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | Id of inbox that emails belongs to
final size = 56; // int | Alias for limit. Assessed first before assessing any passed limit.
final limit = 56; // int | Limit the result set, ordered by received date time sort direction. Maximum 100. For more listing options see the email controller
final sort = sort_example; // String | Sort the results by received date and direction ASC or DESC
final retryTimeout = 789; // int | Maximum milliseconds to spend retrying inbox database until minCount emails are returned
final delayTimeout = 789; // int |
final minCount = 789; // int | Minimum acceptable email count. Will cause request to hang (and retry) until minCount is satisfied or retryTimeout is reached.
final unreadOnly = true; // bool |
final before = 2013-10-20T19:20:30+01:00; // DateTime | Exclude emails received after this ISO 8601 date time
final since = 2013-10-20T19:20:30+01:00; // DateTime | Exclude emails received before this ISO 8601 date time
try {
final result = api_instance.getEmails(inboxId, size, limit, sort, retryTimeout, delayTimeout, minCount, unreadOnly, before, since);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getEmails: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | Id of inbox that emails belongs to | |
size | int | Alias for limit. Assessed first before assessing any passed limit. | [optional] |
limit | int | Limit the result set, ordered by received date time sort direction. Maximum 100. For more listing options see the email controller | [optional] |
sort | String | Sort the results by received date and direction ASC or DESC | [optional] |
retryTimeout | int | Maximum milliseconds to spend retrying inbox database until minCount emails are returned | [optional] |
delayTimeout | int | [optional] | |
minCount | int | Minimum acceptable email count. Will cause request to hang (and retry) until minCount is satisfied or retryTimeout is reached. | [optional] |
unreadOnly | bool | [optional] | |
before | DateTime | Exclude emails received after this ISO 8601 date time | [optional] |
since | DateTime | Exclude emails received before this ISO 8601 date time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
ImapSmtpAccessDetails getImapSmtpAccess(inboxId)
Get IMAP and SMTP access usernames and passwords
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | Inbox ID
try {
final result = api_instance.getImapSmtpAccess(inboxId);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getImapSmtpAccess: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | Inbox ID | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
InboxDto getInbox(inboxId)
Get Inbox. Returns properties of an inbox.
Returns an inbox's properties, including its email address and ID.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
try {
final result = api_instance.getInbox(inboxId);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getInbox: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | 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 ]
InboxByEmailAddressResult getInboxByEmailAddress(emailAddress)
Search for an inbox with the provided email address
Get a inbox result by email address
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final emailAddress = emailAddress_example; // String |
try {
final result = api_instance.getInboxByEmailAddress(emailAddress);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getInboxByEmailAddress: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
emailAddress | 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 ]
CountDto getInboxCount()
Get total inbox count
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
try {
final result = api_instance.getInboxCount();
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getInboxCount: $en');
}
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 ]
CountDto getInboxEmailCount(inboxId)
Get email count in inbox
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | Id of inbox that emails belongs to
try {
final result = api_instance.getInboxEmailCount(inboxId);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getInboxEmailCount: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | Id of inbox that emails belongs to |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
PageEmailPreview getInboxEmailsPaginated(inboxId, page, size, sort, since, before)
Get inbox emails paginated
Get a paginated list of emails in an inbox. Does not hold connections open.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | Id of inbox that emails belongs to
final page = 56; // int | Optional page in inbox emails list pagination
final size = 56; // int | Optional page size in inbox emails list pagination
final sort = sort_example; // String | Optional createdAt sort direction ASC or DESC
final since = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by received after given date time
final before = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by received before given date time
try {
final result = api_instance.getInboxEmailsPaginated(inboxId, page, size, sort, since, before);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getInboxEmailsPaginated: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | Id of inbox that emails belongs to | |
page | int | Optional page in inbox emails list pagination | [optional] [default to 0] |
size | int | Optional page size in inbox emails list pagination | [optional] [default to 20] |
sort | String | Optional createdAt sort direction ASC or DESC | [optional] [default to 'ASC'] |
since | DateTime | Optional filter by received after given date time | [optional] |
before | DateTime | Optional filter by received before given date time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
InboxIdsResult getInboxIds()
Get all inbox IDs
Get list of inbox IDs
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
try {
final result = api_instance.getInboxIds();
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getInboxIds: $en');
}
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 ]
PageSentEmailProjection getInboxSentEmails(inboxId, page, size, sort, searchFilter, since, before)
Get Inbox Sent Emails
Returns an inbox's sent email receipts. Call individual sent email endpoints for more details. Note for privacy reasons the full body of sent emails is never stored. An MD5 hash hex is available for comparison instead.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
final page = 56; // int | Optional page in inbox sent email list pagination
final size = 56; // int | Optional page size in inbox sent email list pagination
final sort = sort_example; // String | Optional createdAt sort direction ASC or DESC
final searchFilter = searchFilter_example; // String | Optional sent email search
final since = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by sent after given date time
final before = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by sent before given date time
try {
final result = api_instance.getInboxSentEmails(inboxId, page, size, sort, searchFilter, since, before);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getInboxSentEmails: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | ||
page | int | Optional page in inbox sent email list pagination | [optional] [default to 0] |
size | int | Optional page size in inbox sent email list pagination | [optional] [default to 20] |
sort | String | Optional createdAt sort direction ASC or DESC | [optional] [default to 'ASC'] |
searchFilter | String | Optional sent email search | [optional] |
since | DateTime | Optional filter by sent after given date time | [optional] |
before | DateTime | Optional filter by sent before given date time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
List
getInboxTags()
Get inbox tags
Get all inbox tags
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
try {
final result = api_instance.getInboxTags();
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getInboxTags: $en');
}
Parameters
This endpoint does not need any parameter.
Return type
List
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
List
getInboxes(size, sort, since, before)
List Inboxes and email addresses
List the inboxes you have created. Note use of the more advanced getAllEmails
is recommended and allows paginated access using a limit and sort parameter.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final size = 56; // int | Optional result size limit. Note an automatic limit of 100 results is applied. See the paginated `getAllEmails` for larger queries.
final sort = sort_example; // String | Optional createdAt sort direction ASC or DESC
final since = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created after given date time
final before = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created before given date time
try {
final result = api_instance.getInboxes(size, sort, since, before);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getInboxes: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
size | int | Optional result size limit. Note an automatic limit of 100 results is applied. See the paginated getAllEmails for larger queries. | [optional] [default to 100] |
sort | String | Optional createdAt sort direction ASC or DESC | [optional] [default to 'ASC'] |
since | DateTime | Optional filter by created after given date time | [optional] |
before | DateTime | Optional filter by created before given date time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
Email getLatestEmailInInbox(inboxId, timeoutMillis)
Get latest email in an inbox. Use WaitForController
to get emails that may not have arrived yet.
Get the newest email in an inbox or wait for one to arrive
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | ID of the inbox you want to get the latest email from
final timeoutMillis = 789; // int | Timeout milliseconds to wait for latest email
try {
final result = api_instance.getLatestEmailInInbox(inboxId, timeoutMillis);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getLatestEmailInInbox: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | ID of the inbox you want to get the latest email from | |
timeoutMillis | int | Timeout milliseconds to wait for latest 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 ]
PageOrganizationInboxProjection getOrganizationInboxes(page, size, sort, searchFilter, since, before)
List Organization Inboxes Paginated
List organization inboxes in paginated form. These are inboxes created with allowTeamAccess
flag enabled. Organization inboxes are readOnly
for non-admin users. The results are available on the content
property of the returned object. This method allows for page (zero based), page size (how many results to return), and a sort direction (based on createdAt time).
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final page = 56; // int | Optional page in list pagination
final size = 56; // int | Optional page size in list pagination
final sort = sort_example; // String | Optional createdAt sort direction ASC or DESC
final searchFilter = searchFilter_example; // String | Optional search filter
final since = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created after given date time
final before = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created before given date time
try {
final result = api_instance.getOrganizationInboxes(page, size, sort, searchFilter, since, before);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->getOrganizationInboxes: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
page | int | Optional page in list pagination | [optional] [default to 0] |
size | int | Optional page size in list pagination | [optional] [default to 20] |
sort | String | Optional createdAt sort direction ASC or DESC | [optional] [default to 'ASC'] |
searchFilter | String | Optional search filter | [optional] |
since | DateTime | Optional filter by created after given date time | [optional] |
before | DateTime | Optional filter by created before given date time | [optional] |
Return type
PageOrganizationInboxProjection
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
PageInboxRulesetDto listInboxRulesets(inboxId, page, size, sort, searchFilter, since, before)
List inbox rulesets
List all rulesets attached to an inbox
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
final page = 56; // int | Optional page in inbox ruleset list pagination
final size = 56; // int | Optional page size in inbox ruleset list pagination
final sort = sort_example; // String | Optional createdAt sort direction ASC or DESC
final searchFilter = searchFilter_example; // String | Optional search filter
final since = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created after given date time
final before = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created before given date time
try {
final result = api_instance.listInboxRulesets(inboxId, page, size, sort, searchFilter, since, before);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->listInboxRulesets: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | ||
page | int | Optional page in inbox ruleset list pagination | [optional] [default to 0] |
size | int | Optional page size in inbox ruleset list pagination | [optional] [default to 20] |
sort | String | Optional createdAt sort direction ASC or DESC | [optional] [default to 'ASC'] |
searchFilter | String | Optional search filter | [optional] |
since | DateTime | Optional filter by created after given date time | [optional] |
before | DateTime | Optional filter by created before given date time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
PageTrackingPixelProjection listInboxTrackingPixels(inboxId, page, size, sort, searchFilter, since, before)
List inbox tracking pixels
List all tracking pixels sent from an inbox
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
final page = 56; // int | Optional page in inbox tracking pixel list pagination
final size = 56; // int | Optional page size in inbox tracking pixel list pagination
final sort = sort_example; // String | Optional createdAt sort direction ASC or DESC
final searchFilter = searchFilter_example; // String | Optional search filter
final since = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created after given date time
final before = 2013-10-20T19:20:30+01:00; // DateTime | Optional filter by created before given date time
try {
final result = api_instance.listInboxTrackingPixels(inboxId, page, size, sort, searchFilter, since, before);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->listInboxTrackingPixels: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | ||
page | int | Optional page in inbox tracking pixel list pagination | [optional] [default to 0] |
size | int | Optional page size in inbox tracking pixel list pagination | [optional] [default to 20] |
sort | String | Optional createdAt sort direction ASC or DESC | [optional] [default to 'ASC'] |
searchFilter | String | Optional search filter | [optional] |
since | DateTime | Optional filter by created after given date time | [optional] |
before | DateTime | Optional filter by created before given date time | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
sendEmail(inboxId, sendEmailOptions)
Send Email
Send an email from an inbox's email address. The request body should contain the SendEmailOptions
that include recipients, attachments, body etc. See SendEmailOptions
for all available properties. Note the inboxId
refers to the inbox's id not the inbox's email address. See https://www.mailslurp.com/guides/ for more information on how to send emails. This method does not return a sent email entity due to legacy reasons. To send and get a sent email as returned response use the sister method sendEmailAndConfirm
.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | ID of the inbox you want to send the email from
final sendEmailOptions = SendEmailOptions(); // SendEmailOptions |
try {
api_instance.sendEmail(inboxId, sendEmailOptions);
} catch (e) {
print('Exception when calling InboxControllerApi->sendEmail: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | ID of the inbox you want to send the email from | |
sendEmailOptions | SendEmailOptions |
Return type
void (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 ]
SentEmailDto sendEmailAndConfirm(inboxId, sendEmailOptions)
Send email and return sent confirmation
Sister method for standard sendEmail
method with the benefit of returning a SentEmail
entity confirming the successful sending of the email with a link to the sent object created for it.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | ID of the inbox you want to send the email from
final sendEmailOptions = SendEmailOptions(); // SendEmailOptions |
try {
final result = api_instance.sendEmailAndConfirm(inboxId, sendEmailOptions);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->sendEmailAndConfirm: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | ID of the inbox you want to send the email from | |
sendEmailOptions | SendEmailOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
SentEmailDto sendSmtpEnvelope(inboxId, sendSMTPEnvelopeOptions)
Send email using an SMTP mail envelope and message body and return sent confirmation
Send email using an SMTP envelope containing RCPT TO, MAIL FROM, and a SMTP BODY.
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | ID of the inbox you want to send the email from
final sendSMTPEnvelopeOptions = SendSMTPEnvelopeOptions(); // SendSMTPEnvelopeOptions |
try {
final result = api_instance.sendSmtpEnvelope(inboxId, sendSMTPEnvelopeOptions);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->sendSmtpEnvelope: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | ID of the inbox you want to send the email from | |
sendSMTPEnvelopeOptions | SendSMTPEnvelopeOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
sendTestEmail(inboxId)
Send a test email to inbox
Send an inbox a test email to test email receiving is working
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
try {
api_instance.sendTestEmail(inboxId);
} catch (e) {
print('Exception when calling InboxControllerApi->sendTestEmail: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String |
Return type
void (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 ]
InboxDto setInboxFavourited(inboxId, setInboxFavouritedOptions)
Set inbox favourited state
Set and return new favourite state for an inbox
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | ID of inbox to set favourite state
final setInboxFavouritedOptions = SetInboxFavouritedOptions(); // SetInboxFavouritedOptions |
try {
final result = api_instance.setInboxFavourited(inboxId, setInboxFavouritedOptions);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->setInboxFavourited: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | ID of inbox to set favourite state | |
setInboxFavouritedOptions | SetInboxFavouritedOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]
InboxDto updateInbox(inboxId, updateInboxOptions)
Update Inbox. Change name and description. Email address is not editable.
Update editable fields on an inbox
Example
import 'package:mailslurp/api.dart';
// TODO Configure API key authorization: API_KEY
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('API_KEY').apiKeyPrefix = 'Bearer';
final api_instance = InboxControllerApi();
final inboxId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String |
final updateInboxOptions = UpdateInboxOptions(); // UpdateInboxOptions |
try {
final result = api_instance.updateInbox(inboxId, updateInboxOptions);
print(result);
} catch (e) {
print('Exception when calling InboxControllerApi->updateInbox: $en');
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
inboxId | String | ||
updateInboxOptions | UpdateInboxOptions |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to ]