# MailSlurpClient::InboxControllerApi
All URIs are relative to https://api.mailslurp.com
Method | HTTP request | Description |
---|---|---|
create_inbox | POST /inboxes | Create an Inbox (email address) |
create_inbox_with_options | POST /inboxes/withOptions | Create an inbox with additional options |
delete_all_inboxes | DELETE /inboxes | Delete all inboxes |
delete_inbox | DELETE /inboxes/{inboxId} | Delete inbox |
get_all_inboxes | GET /inboxes/paginated | List All Inboxes Paginated |
get_emails | 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. |
get_inbox | GET /inboxes/{inboxId} | Get Inbox |
get_inbox_emails_paginated | GET /inboxes/{inboxId}/emails/paginated | Get inbox emails paginated |
get_inbox_sent_emails | GET /inboxes/{inboxId}/sent | Get Inbox Sent Emails |
get_inbox_tags | GET /inboxes/tags | Get inbox tags |
get_inboxes | GET /inboxes | List Inboxes / Email Addresses |
send_email | POST /inboxes/{inboxId} | Send Email |
send_email_and_confirm | POST /inboxes/{inboxId}/confirm | Send email and return sent confirmation |
set_inbox_favourited | PUT /inboxes/{inboxId}/favourite | Set inbox favourited state |
update_inbox | PATCH /inboxes/{inboxId} | Update Inbox |
# create_inbox
Inbox create_inbox(opts)
Create an Inbox (email address)
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
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
opts = {
description: 'description_example', # String | Optional description of the inbox for labelling purposes. Is shown in the dashboard and can be used with
email_address: 'email_address_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. 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.
expires_at: DateTime.parse('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.
expires_in: 56, # Integer | Number of milliseconds that inbox should exist for
favourite: true, # Boolean | Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access or filtering
name: 'name_example', # String | Optional name of the inbox. Displayed in the dashboard for easier search
tags: ['tags_example'], # Array<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.
use_domain_pool: true # Boolean | 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.
}
begin
#Create an Inbox (email address)
result = api_instance.create_inbox(opts)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->create_inbox: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
description | String | Optional description of the inbox for labelling purposes. Is shown in the dashboard and can be used with | [optional] |
email_address | 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. 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] |
expires_at | 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] |
expires_in | Integer | Number of milliseconds that inbox should exist for | [optional] |
favourite | Boolean | Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access or filtering | [optional] |
name | String | Optional name of the inbox. Displayed in the dashboard for easier search | [optional] |
tags | Array<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. | [optional] |
use_domain_pool | Boolean | 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. | [optional] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
# create_inbox_with_options
Inbox create_inbox_with_options(create_inbox_dto)
Create an inbox with additional options
Additional endpoint that allows inbox creation with request body options. Can be more flexible that other methods for some clients.
# Example
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
create_inbox_dto = MailSlurpClient::CreateInboxDto.new # CreateInboxDto | createInboxDto
begin
#Create an inbox with additional options
result = api_instance.create_inbox_with_options(create_inbox_dto)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->create_inbox_with_options: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
create_inbox_dto | CreateInboxDto | createInboxDto |
# Return type
# Authorization
# HTTP request headers
- Content-Type: application/json
- Accept: application/json
# delete_all_inboxes
delete_all_inboxes
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
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
begin
#Delete all inboxes
api_instance.delete_all_inboxes
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->delete_all_inboxes: #{e}"
end
# Parameters
This endpoint does not need any parameter.
# Return type
nil (empty response body)
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
# delete_inbox
delete_inbox(inbox_id)
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
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
inbox_id = 'inbox_id_example' # String | inboxId
begin
#Delete inbox
api_instance.delete_inbox(inbox_id)
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->delete_inbox: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
inbox_id | String | inboxId |
# Return type
nil (empty response body)
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
# get_all_inboxes
PageInboxProjection get_all_inboxes(opts)
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 index (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
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
opts = {
favourite: false, # Boolean | Optionally filter results for favourites only
page: 0, # Integer | Optional page index in inbox list pagination
search: 'search_example', # String | Optionally filter by search words partial matching ID, tags, name, and email address
size: 20, # Integer | Optional page size in inbox list pagination
sort: 'ASC', # String | Optional createdAt sort direction ASC or DESC
tag: 'tag_example' # String | Optionally filter by tags
}
begin
#List All Inboxes Paginated
result = api_instance.get_all_inboxes(opts)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->get_all_inboxes: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
favourite | Boolean | Optionally filter results for favourites only | [optional] [default to false] |
page | Integer | Optional page index in inbox list pagination | [optional] [default to 0] |
search | String | Optionally filter by search words partial matching ID, tags, name, and email address | [optional] |
size | Integer | Optional page size in inbox list pagination | [optional] [default to 20] |
sort | String | Optional createdAt sort direction ASC or DESC | [optional] [default to 'ASC'] |
tag | String | Optionally filter by tags | [optional] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
# get_emails
Array<EmailPreview> get_emails(inbox_id, opts)
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
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
inbox_id = 'inbox_id_example' # String | Id of inbox that emails belongs to
opts = {
limit: 56, # Integer | Limit the result set, ordered by received date time sort direction. Maximum 100. For more listing options see the email controller
min_count: 56, # Integer | Minimum acceptable email count. Will cause request to hang (and retry) until minCount is satisfied or retryTimeout is reached.
retry_timeout: 56, # Integer | Maximum milliseconds to spend retrying inbox database until minCount emails are returned
since: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Exclude emails received before this ISO 8601 date time
size: 56, # Integer | Alias for limit. Assessed first before assessing any passed limit.
sort: 'sort_example' # String | Sort the results by received date and direction ASC or DESC
}
begin
#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.
result = api_instance.get_emails(inbox_id, opts)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->get_emails: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
inbox_id | String | Id of inbox that emails belongs to | |
limit | Integer | Limit the result set, ordered by received date time sort direction. Maximum 100. For more listing options see the email controller | [optional] |
min_count | Integer | Minimum acceptable email count. Will cause request to hang (and retry) until minCount is satisfied or retryTimeout is reached. | [optional] |
retry_timeout | Integer | Maximum milliseconds to spend retrying inbox database until minCount emails are returned | [optional] |
since | DateTime | Exclude emails received before this ISO 8601 date time | [optional] |
size | Integer | Alias for limit. Assessed first before assessing any passed limit. | [optional] |
sort | String | Sort the results by received date and direction ASC or DESC | [optional] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
# get_inbox
Inbox get_inbox(inbox_id)
Get Inbox
Returns an inbox's properties, including its email address and ID.
# Example
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
inbox_id = 'inbox_id_example' # String | inboxId
begin
#Get Inbox
result = api_instance.get_inbox(inbox_id)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->get_inbox: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
inbox_id | String | inboxId |
# Return type
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
# get_inbox_emails_paginated
PageEmailPreview get_inbox_emails_paginated(inbox_id, opts)
Get inbox emails paginated
Get a paginated list of emails in an inbox. Does not hold connections open.
# Example
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
inbox_id = 'inbox_id_example' # String | Id of inbox that emails belongs to
opts = {
page: 0, # Integer | Optional page index in inbox emails list pagination
size: 20, # Integer | Optional page size in inbox emails list pagination
sort: 'ASC' # String | Optional createdAt sort direction ASC or DESC
}
begin
#Get inbox emails paginated
result = api_instance.get_inbox_emails_paginated(inbox_id, opts)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->get_inbox_emails_paginated: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
inbox_id | String | Id of inbox that emails belongs to | |
page | Integer | Optional page index in inbox emails list pagination | [optional] [default to 0] |
size | Integer | 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'] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
# get_inbox_sent_emails
PageSentEmailProjection get_inbox_sent_emails(inbox_id, opts)
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
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
inbox_id = 'inbox_id_example' # String | inboxId
opts = {
page: 0, # Integer | Optional page index in inbox sent email list pagination
size: 20, # Integer | Optional page size in inbox sent email list pagination
sort: 'ASC' # String | Optional createdAt sort direction ASC or DESC
}
begin
#Get Inbox Sent Emails
result = api_instance.get_inbox_sent_emails(inbox_id, opts)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->get_inbox_sent_emails: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
inbox_id | String | inboxId | |
page | Integer | Optional page index in inbox sent email list pagination | [optional] [default to 0] |
size | Integer | 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'] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
# get_inbox_tags
Array<String> get_inbox_tags
Get inbox tags
Get all inbox tags
# Example
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
begin
#Get inbox tags
result = api_instance.get_inbox_tags
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->get_inbox_tags: #{e}"
end
# Parameters
This endpoint does not need any parameter.
# Return type
Array<String>
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
# get_inboxes
Array<Inbox> get_inboxes(opts)
List Inboxes / Email Addresses
List the inboxes you have created. Note use of the more advanced getAllEmails
is recommended. You can provide a limit and sort parameter.
# Example
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
opts = {
size: 100, # Integer | Optional result size limit. Note an automatic limit of 100 results is applied. See the paginated `getAllEmails` for larger queries.
sort: 'ASC' # String | Optional createdAt sort direction ASC or DESC
}
begin
#List Inboxes / Email Addresses
result = api_instance.get_inboxes(opts)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->get_inboxes: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
size | Integer | 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'] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
# send_email
send_email(inbox_id, opts)
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
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
inbox_id = 'inbox_id_example' # String | ID of the inbox you want to send the email from
opts = {
send_email_options: MailSlurpClient::SendEmailOptions.new # SendEmailOptions | Options for the email
}
begin
#Send Email
api_instance.send_email(inbox_id, opts)
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->send_email: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
inbox_id | String | ID of the inbox you want to send the email from | |
send_email_options | SendEmailOptions | Options for the email | [optional] |
# Return type
nil (empty response body)
# Authorization
# HTTP request headers
- Content-Type: application/json
- Accept: Not defined
# send_email_and_confirm
SentEmailDto send_email_and_confirm(inbox_id, opts)
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 link the the sent object created for it.
# Example
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
inbox_id = 'inbox_id_example' # String | ID of the inbox you want to send the email from
opts = {
send_email_options: MailSlurpClient::SendEmailOptions.new # SendEmailOptions | Options for the email
}
begin
#Send email and return sent confirmation
result = api_instance.send_email_and_confirm(inbox_id, opts)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->send_email_and_confirm: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
inbox_id | String | ID of the inbox you want to send the email from | |
send_email_options | SendEmailOptions | Options for the email | [optional] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: application/json
- Accept: application/json
# set_inbox_favourited
Inbox set_inbox_favourited(inbox_id, set_inbox_favourited_options)
Set inbox favourited state
Set and return new favourite state for an inbox
# Example
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
inbox_id = 'inbox_id_example' # String | inboxId
set_inbox_favourited_options = MailSlurpClient::SetInboxFavouritedOptions.new # SetInboxFavouritedOptions | setInboxFavouritedOptions
begin
#Set inbox favourited state
result = api_instance.set_inbox_favourited(inbox_id, set_inbox_favourited_options)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->set_inbox_favourited: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
inbox_id | String | inboxId | |
set_inbox_favourited_options | SetInboxFavouritedOptions | setInboxFavouritedOptions |
# Return type
# Authorization
# HTTP request headers
- Content-Type: application/json
- Accept: application/json
# update_inbox
Inbox update_inbox(inbox_id, update_inbox_options)
Update Inbox
Update editable fields on an inbox
# Example
# load the gem
require 'mailslurp_client'
# setup authorization
MailSlurpClient.configure do |config|
# Configure API key authorization: API_KEY
config.api_key['x-api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['x-api-key'] = 'Bearer'
end
api_instance = MailSlurpClient::InboxControllerApi.new
inbox_id = 'inbox_id_example' # String | inboxId
update_inbox_options = MailSlurpClient::UpdateInboxOptions.new # UpdateInboxOptions | updateInboxOptions
begin
#Update Inbox
result = api_instance.update_inbox(inbox_id, update_inbox_options)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling InboxControllerApi->update_inbox: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
inbox_id | String | inboxId | |
update_inbox_options | UpdateInboxOptions | updateInboxOptions |
# Return type
# Authorization
# HTTP request headers
- Content-Type: application/json
- Accept: application/json