SPUtility.SendEmail Method (SPWeb, StringDictionary, String)
Sends an e-mail message.
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
<SubsetCallableExcludeMemberAttribute(SubsetCallableExcludeMemberType.PerSpec)> _
Public Shared Function SendEmail ( _
web As SPWeb, _
messageHeaders As StringDictionary, _
messageBody As String _
) As Boolean
'Usage
Dim web As SPWeb
Dim messageHeaders As StringDictionary
Dim messageBody As String
Dim returnValue As Boolean
returnValue = SPUtility.SendEmail(web, _
messageHeaders, messageBody)
[SubsetCallableExcludeMemberAttribute(SubsetCallableExcludeMemberType.PerSpec)]
public static bool SendEmail(
SPWeb web,
StringDictionary messageHeaders,
string messageBody
)
Parameters
web
Type: Microsoft.SharePoint.SPWebAn SPWeb object that represents the site.
messageHeaders
Type: System.Collections.Specialized.StringDictionaryThe name-value pairs for header fields.
messageBody
Type: System.StringContains the body of the e-mail message.
Return Value
Type: System.Boolean
true if the e-mail message is sent successfully; otherwise, false.
Remarks
The e-mail message will be sent to the address (or addresses) specified in the “to”, “cc”, and “bcc” headers. Header values include the content-type, the date and time that the message was transferred, and other fields associated with displaying a message in the proper format.