Function mailslurp::apis::attachment_controller_api::upload_attachment[][src]

pub async fn upload_attachment(
    configuration: &Configuration,
    params: UploadAttachmentParams
) -> Result<Vec<String>, Error<UploadAttachmentError>>

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.