# MailSlurpClient::AttachmentControllerApi
All URIs are relative to https://api.mailslurp.com
Method | HTTP request | Description |
---|---|---|
upload_attachment | POST /attachments | Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment. |
upload_attachment_bytes | POST /attachments/bytes | Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment. |
upload_multipart_form | POST /attachments/multipart | Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment. |
# upload_attachment
Array<String> upload_attachment(upload_options)
Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment.
Email attachments are essentially files with meta data. Files are byte arrays and the meta data is a content type and a filename. These properties allow email clients to display the filename and icon etc. When sending emails with attachments first upload each attachment with an upload endpoint. Record the returned attachment ID and use it with subsequent email sending. For legacy reasons the ID is returned as the first element in an array. Only a single ID is ever returned. To send the attachments pass a list of attachment IDs with SendEmailOptions
when sending an email. Using the upload endpoints prior to sending mean attachments can easily be reused.
# 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::AttachmentControllerApi.new
upload_options = MailSlurpClient::UploadAttachmentOptions.new # UploadAttachmentOptions | uploadOptions
begin
#Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment.
result = api_instance.upload_attachment(upload_options)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling AttachmentControllerApi->upload_attachment: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
upload_options | UploadAttachmentOptions | uploadOptions |
# Return type
Array<String>
# Authorization
# HTTP request headers
- Content-Type: application/json
- Accept: application/json
# upload_attachment_bytes
Array<String> upload_attachment_bytes(opts)
Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment.
Email attachments are essentially files with meta data. Files are byte arrays and the meta data is a content type and a filename. These properties allow email clients to display the filename and icon etc. When sending emails with attachments first upload each attachment with an upload endpoint. Record the returned attachment ID and use it with subsequent email sending. For legacy reasons the ID is returned as the first element in an array. Only a single ID is ever returned. To send the attachments pass a list of attachment IDs with SendEmailOptions
when sending an email. Using the upload endpoints prior to sending mean attachments can easily be reused.
# 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::AttachmentControllerApi.new
opts = {
string: 'string_example', # String | Optional contentType for file. For instance `application/pdf`
filename: 'filename_example', # String | Optional filename to save upload with
byte_array: 'byte_array_example' # String | Byte array request body
}
begin
#Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment.
result = api_instance.upload_attachment_bytes(opts)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling AttachmentControllerApi->upload_attachment_bytes: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
string | String | Optional contentType for file. For instance `application/pdf` | [optional] |
filename | String | Optional filename to save upload with | [optional] |
byte_array | String | Byte array request body | [optional] |
# Return type
Array<String>
# Authorization
# HTTP request headers
- Content-Type: application/octet-stream
- Accept: application/json
# upload_multipart_form
Array<String> upload_multipart_form(file, opts)
Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment.
Email attachments are essentially files with meta data. Files are byte arrays and the meta data is a content type and a filename. These properties allow email clients to display the filename and icon etc. When sending emails with attachments first upload each attachment with an upload endpoint. Record the returned attachment ID and use it with subsequent email sending. For legacy reasons the ID is returned as the first element in an array. Only a single ID is ever returned. To send the attachments pass a list of attachment IDs with SendEmailOptions
when sending an email. Using the upload endpoints prior to sending mean attachments can easily be reused.
# 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::AttachmentControllerApi.new
file = File.new('/path/to/file') # File | file
opts = {
content_type: 'content_type_example', # String | Optional content type of attachment
filename: 'filename_example', # String | Optional name of file
x_filename: 'x_filename_example' # String | Optional content type header of attachment
}
begin
#Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment.
result = api_instance.upload_multipart_form(file, opts)
p result
rescue MailSlurpClient::ApiError => e
puts "Exception when calling AttachmentControllerApi->upload_multipart_form: #{e}"
end
# Parameters
Name | Type | Description | Notes |
---|---|---|---|
file | File | file | |
content_type | String | Optional content type of attachment | [optional] |
filename | String | Optional name of file | [optional] |
x_filename | String | Optional content type header of attachment | [optional] |
# Return type
Array<String>
# Authorization
# HTTP request headers
- Content-Type: multipart/form-data
- Accept: application/json