Hi, can the MS Exchange Graph API be extended to include an option to Save as Draft - not just upload to a folder as that does not set the correct flags?
Currently I have do this using Graph API calls which makes this inconsistent with all the other functionality as that uses the Gembox.Email functions.
Thanks
Hi,
Please try again with this latest package:
Install-Package GemBox.Email -Version 2026.9.104
And try uploading an email to the “Drafts” folder, like the following:
var message = new MailMessage("from@email.com", "to@email.com")
{
BodyText = "Draft test",
Subject = "This email should be a Draft",
};
client.UploadMessage(message, "Drafts");
Does this solve your issue?
Regards,
Mario