I am using MS Graph API to send reply emails from my UI. A user will select the message they want to reply to and they draft a email and add the contacts they want included (To, Cc, Bcc) and the new body of the reply email. I capture the message id of the email they want to send to and I reply to that. However, when they do this it the reply email does show up in outlook as if they are replying to the email because its in the chain/group of the associated emails but the body does not include the previous email threads similar to if you were to create a reply to email in outlook itself. Is there a way to include the historical email body threads like outlook or am I doing this incorrectly?
Код: Выделить всё
public async Task SendReplyAsync(string EmailAccount, Email email, string MessageId)
{
var tries = 0;
var maxRetries = 1;
while (tries
Источник: [url]https://stackoverflow.com/questions/76758147/ms-graph-api-how-to-reply-to-an-email-thread-and-maintain-the-message-body-from[/url]