Skip to content

Latest commit

 

History

History
91 lines (52 loc) · 2.91 KB

AttachmentControllerApi.md

File metadata and controls

91 lines (52 loc) · 2.91 KB

\AttachmentControllerApi

All URIs are relative to https://api.mailslurp.com

Method HTTP request Description
UploadAttachment Post /attachments Upload an attachment for sending
UploadMultipartForm Post /attachments/multipart Upload an attachment for sending using Multipart Form

UploadAttachment

[]string UploadAttachment(ctx, uploadOptions)

Upload an attachment for sending

When sending emails with attachments first upload each attachment with this endpoint. Record the returned attachment IDs. Then use these attachment IDs in the SendEmailOptions when sending an email. This means that attachments can easily be reused.

Required Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
uploadOptions UploadAttachmentOptions uploadOptions

Return type

[]string

Authorization

API_KEY

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

UploadMultipartForm

[]string UploadMultipartForm(ctx, file, optional)

Upload an attachment for sending using Multipart Form

When sending emails with attachments first upload each attachment with this endpoint. Record the returned attachment IDs. Then use these attachment IDs in the SendEmailOptions when sending an email. This means that attachments can easily be reused.

Required Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
file os.Fileos.File file
optional *UploadMultipartFormOpts optional parameters nil if no parameters

Optional Parameters

Optional parameters are passed through a pointer to a UploadMultipartFormOpts struct

Name Type Description Notes

contentType | optional.String| contentType | filename | optional.String| filename | xFilename | optional.String| x-filename |

Return type

[]string

Authorization

API_KEY

HTTP request headers

  • Content-Type: multipart/form-data
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]