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 |
[]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.
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
uploadOptions | UploadAttachmentOptions | uploadOptions |
[]string
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]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.
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 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 |
[]string
- Content-Type: multipart/form-data
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]