SendGrid emailing API , SendGrid 支持哪些类型的电子邮件附件

SendGrid emailing API , which types of email attachment supported by SendGrid

我正在使用下一个代码发送电子邮件附件:

Attachments attachments3 = new Attachments();
Base64 x = new Base64();
String imageDataString = x.encodeAsString(fileData);
attachments3.setContent(imageDataString);
attachments3.setType("image/png");//"application/pdf"
attachments3.setFilename("x.png");
attachments3.setDisposition("attachment");
attachments3.setContentId("Banner");
mail.addAttachments(attachments3);

这里有settersetType.

SendGrid 是否有附件类型的白名单?

例如,我无法在其他服务中发送 .exe 或 .rar 文件。我想知道 SendGrid 的禁令。

根据他们的文档,唯一的限制是 30MB 或更少。

https://docs.sendgrid.com/api-reference/mail-send/limitations

过去使用过 SendGrid,如果他们限制您可以发送的文件类型,我会感到惊讶。