我发送的电子邮件未经用户身份验证,是自动方式。
{
"message":
{
"subject": "Envio de email Teste do MS Graph",
"body":
{
"contentType": "HTML",
"content": "Testando envio"
},
"toRecipients":
[
{
"emailAddress":
{
"address": "xxxxx@gmail.com"
}
}
],
"attachments":
[
{
"@odata.type": "#microsoft.graph.fileAttachment",
"name": "Teste de Anexo",
"contentLocation": "e:\ramos.xlsx",
"isInLine":"true"
}
]
}
}
如何在电子邮件中附加几个文件?
我知道一个称为附件的参数,但无法使用它指向物理文件路径。我需要指向几个文件。
如何使用VBA将文件转换为base64? Graph内是否有API可以做到这一点?