MailSlurpAPI.Api.EmailController.download_attachment
You're seeing just the function
download_attachment
, go back to MailSlurpAPI.Api.EmailController module for more information.
Link to this function
download_attachment(connection, attachment_id, email_id, opts \\ [])
Specs
download_attachment(Tesla.Env.client(), String.t(), String.t(), keyword()) :: {:ok, String.t()} | {:error, Tesla.Env.t()}
Get email attachment bytes. If you have trouble with byte responses try the downloadAttachmentBase64
response endpoints.
Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream.
Parameters
- connection (MailSlurpAPI.Connection): Connection to server
- attachment_id (String.t): ID of attachment
- email_id (String.t): ID of email
- opts (KeywordList): [optional] Optional parameters
} on success {:error, info} on failure