將投票選項新增至郵件專案
此範例示範如何使用MailItem物件的 VotingOptions 屬性,將投票選項新增至電子郵件訊息。
範例
注意事項
下列程式代碼範例是 Microsoft Office Outlook 2007 程式設計應用程式的摘錄。
郵件的投票選項可用來為郵件收件者提供選擇清單,以及追蹤其回應。 若要以程式設計方式建立投票選項,請為 MailItem 物件的 VotingOptions 屬性設定以分號分隔之值清單的字串。 VotingOptions 屬性的值會出現在所接收訊息功能區中 [回應] 群組的 [投票] 命令底下。
在下列範例中,OrderPizza 會在新的郵件訊息中建立投票選項。 OrderPizza 會先建立 MailItem,然後將 VotingOptions 屬性設定為 “Cheese;蘑菇;香腸;組合;Veg Combo“, 並將 Subject 屬性設為 ”Pizza Order“。 傳送「披薩訂單」訊息時,投票選項會顯示給收件者。 對於收到的每個回應,收件者的選擇會在寄件人的 [傳送郵件] 資料夾中,於郵件的 [ 追蹤 ] 頁面上進行計算。
If you use Visual Studio to test this code example, you must first add a reference to the Microsoft Outlook 15.0 Object Library component and specify the Outlook variable when you import the Microsoft.Office.Interop.Outlook namespace. The using statement must not occur directly before the functions in the code example but must be added before the public Class declaration. The following line of code shows how to do the import and assignment in C#.
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);
}