我有一個SharePoint 2010中的Web部件,它具有一個Event接收器,該接收器在項目添加到列表時觸發。事件接收器應該發送一封郵件,但沒有發送。無法使用事件接收器在SharePoint中發送郵件
當我嘗試沒有事件接收器時,它可以正常工作,我如何使用事件接收器發送郵件?
StringDictionary headers = new StringDictionary();
string body = "Hi!";
headers.Add("to", "[email protected]");
headers.Add("from", "[email protected]");
headers.Add("subject", "Paulo says hi");
headers.Add("content-type", "text/html");
SPUtility.SendEmail(web, headers, body)
謝謝你的幫助。
您是否獲得一個異常還是有可在SharePoint ULS錯誤日誌? – 2012-04-20 12:29:00