C
C#2y ago
Emre

❔ graph .net sdk email

Hello, I'm trying to send an email via graph .net sdk. Here is my code.
var message = new Message()
{
ToRecipients = new List<Recipient>()
{
new Recipient()
{
EmailAddress = new EmailAddress()
{
Address = "[email protected]",
}
}
},
Subject = "Test mail",
Body = new ItemBody()
{
ContentType = BodyType.Text,
Content = "Test mail content aşko kuşkoo"
},

};

await GraphServiceClient.Me.SendMail(message, true).Request().PostAsync();
var message = new Message()
{
ToRecipients = new List<Recipient>()
{
new Recipient()
{
EmailAddress = new EmailAddress()
{
Address = "[email protected]",
}
}
},
Subject = "Test mail",
Body = new ItemBody()
{
ContentType = BodyType.Text,
Content = "Test mail content aşko kuşkoo"
},

};

await GraphServiceClient.Me.SendMail(message, true).Request().PostAsync();
And here is the error message: Microsoft.Graph.ServiceException: Code: RequestBodyRead Message: The 'odata.nextLink' instance or property annotation has a null value. In OData, the 'odata.nextLink' instance or property annotation must have a non-null string value.
2 Replies
Emre
EmreOP2y ago
Updated the version. 1.16.0 to 2.5.0
Accord
Accord2y ago
Looks like nothing has happened here. I will mark this as stale and this post will be archived until there is new activity.
Want results from more Discord servers?
Add your server