SPUtility class
SharePoint 2013
Provides tools for converting date and time formats, for obtaining information from user names, for modifying access to sites, and for various other tasks in managing deployments of Microsoft SharePoint Foundation.
Namespace:
Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
The following code example iterates through the collection of document discussions for a document library and uses the SendEmail method of the SPUtility class to send email notification to a specified address if the total number of comments made about a document is more than 20.
This example requires using directives (Imports in Visual Basic) for both the Microsoft.SharePoint and Microsoft.SharePoint.Utilities namespaces.
SPWeb site = SPControl.GetContextWeb(Context); string Msg = ""; SPDocDiscussionCollection discs = site.GetDocDiscussions("Document_Library_Name"); foreach (SPDocDiscussion disc in discs) { if (disc.CommentCount > 20) { Msg = "The file <A href='" + disc.DocUrl.ToString() + "'>" + disc.DocUrl.ToString() + "</A> has received " + disc.CommentCount.ToString() + " comments."; SPUtility.SendEmail(site, false, false, "e-mail_address", "Web Discussion Report", Msg); } }