Values.AttachmentSourceContains metadata and attachment raw content.
type nonrec t = {rawContent : RawAttachmentData.t;The raw data of the attachment. It needs to be base64-encoded if you are accessing Amazon SES directly through the HTTPS interface. If you are accessing Amazon SES using an Amazon Web Services SDK, the SDK takes care of the base 64-encoding for you.
*)contentDisposition : AttachmentContentDisposition.t option;A standard descriptor indicating how the attachment should be rendered in the email. Supported values: ATTACHMENT or INLINE.
*)fileName : AttachmentFileName.t;The file name for the attachment as it will appear in the email. Amazon SES restricts certain file extensions. To ensure attachments are accepted, check the Unsupported attachment types in the Amazon SES Developer Guide.
*)contentDescription : AttachmentContentDescription.t option;A brief description of the attachment content.
*)contentId : AttachmentContentId.t option;Unique identifier for the attachment, used for referencing attachments with INLINE disposition in HTML content.
*)contentTransferEncoding : AttachmentContentTransferEncoding.t option;Specifies how the attachment is encoded. Supported values: BASE64, QUOTED_PRINTABLE, SEVEN_BIT.
*)contentType : AttachmentContentType.t option;The MIME type of the attachment. Example: application/pdf, image/jpeg
*)}val make :
?contentDisposition:??? ->
?contentDescription:??? ->
?contentId:??? ->
?contentTransferEncoding:??? ->
?contentType:??? ->
rawContent:RawAttachmentData.t ->
fileName:AttachmentFileName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Blob of RawAttachmentData.t
| `Enum of string
| `String of AttachmentFileName.t ])
list ]