Skip to content

Instantly share code, notes, and snippets.

@maisarissi
Last active March 2, 2023 17:52
Show Gist options
  • Select an option

  • Save maisarissi/68f10c40921fc872b9deed775d2580c2 to your computer and use it in GitHub Desktop.

Select an option

Save maisarissi/68f10c40921fc872b9deed775d2580c2 to your computer and use it in GitHub Desktop.
msgraph-dotnet-v5-method-parameter-object
//var message = ....
//var saveToSentItems = ...
var body = new SendMailPostRequestBody
{
    Message = message,
    SaveToSentItems = saveToSentItems
};
await graphServiceClient.Me
    .SendMail //method SendMail
    .PostAsync(body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment