Outlook メール REST API を使用して、Android アプリからメール グループにピンをメールで送信する必要があります。どうすればこれを達成できますか?ドキュメントのグループについては何も見つかりません。
管理者ユーザーを静的構成ファイルに保存し、次のような JSON コンテンツを使用して " https://outlook.office.com/api/v2.0/me/sendmail "に要求を POST することは避けたいと考えています。
{
"Message": {
"Subject": "ADMIN PIN FOR ANDROID APP",
"Body": {
"ContentType": "Text",
"Content": "The secret pin is: 12345"
},
"ToRecipients": [ // ( list generated from config file )
{
"EmailAddress": {
"Address": "user1@company.com"
}
},
{
"EmailAddress": {
"Address": "user2@company.com"
}
}
],
"Attachments": [
{
"@odata.type": "#Microsoft.OutlookServices.FileAttachment",
"Name": "menu.txt",
"ContentBytes": "bWFjIGFuZCBjaGVlc2UgdG9kYXk="
}
]
},
"SaveToSentItems": "false"
}
ありがとう