Skip to content

Instantly share code, notes, and snippets.

@maisarissi
Last active February 9, 2023 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maisarissi/49570879e4691217e528bf102dd6a69c to your computer and use it in GitHub Desktop.
Save maisarissi/49570879e4691217e528bf102dd6a69c to your computer and use it in GitHub Desktop.
msgraph-dotnet-v5-rc-parameter-object
//var message = ....
//var saveToSentItems = ...
var body = new SendMailPostRequestBody
{
Message = message,
    SaveToSentItems = saveToSentItems
};
await graphServiceClient.Me
    .MicrosoftGraphSendMail
    .PostAsync(body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment