Last active
March 2, 2023 17:52
-
-
Save maisarissi/68f10c40921fc872b9deed775d2580c2 to your computer and use it in GitHub Desktop.
msgraph-dotnet-v5-method-parameter-object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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