20-01-21 10:40 AM
20-01-21 03:13 PM
using Outlook = Microsoft.Office.Interop.Outlook;
private void OrderPizza()
{
Outlook.MailItem mail = (Outlook.MailItem)Application.CreateItem( Outlook.OlItemType.olMailItem);
mail.VotingOptions = “Cheese; Mushroom; Sausage; Combo; Veg Combo;”
mail.Subject = “Pizza Order”;
mail.Display(false);
}
VotingResponse
Returns or sets a String (string in C#) specifying the voting response for the mail message. Read/write.
(Inherited from _MailItem)
20-01-21 03:58 PM
21-01-21 08:43 AM