[This is preliminary documentation and is subject to change.]

Sends an email to the specified users who have the application.

Namespace:  Facebook.Api.Controllers
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)

Syntax

C#
public FacebookResponse<string> SendEmail(
	string[] recipients,
	string subject,
	string text,
	string fbml
)
Visual Basic (Declaration)
Public Function SendEmail ( _
	recipients As String(), _
	subject As String, _
	text As String, _
	fbml As String _
) As FacebookResponse(Of String)
Visual C++
public:
FacebookResponse<String^>^ SendEmail(
	array<String^>^ recipients, 
	String^ subject, 
	String^ text, 
	String^ fbml
)

Parameters

recipients
Type: array< System..::.String >[]()[]
A comma-separated list of recipient IDs. The recipients must be people who have already added your application. You can email up to 100 people at a time.
subject
Type: System..::.String
The subject of the email message. As of 10/28/2008, the subject will accept a limited set of FBML tags, including names, and tags related to internationalization.
text
Type: System..::.String
The plain text version of the email content. You must include a non-empty value for at least one of either the
CopyC#
fbml
or
CopyC#
text
parameters. The FBML input takes precedence, but if the given FBML value is invalid or cannot be rendered, then the text will be used instead. There is currently no character limit on the length of either the text or FBML body.
fbml
Type: System..::.String
The FBML version of the email. You must include a non-empty value for at least one of either the
CopyC#
fbml
or
CopyC#
text
parameters. The
CopyC#
fbml
parameter is a stripped-down set of FBML that allows only HTML/FBML tags that result in text, links, linebreaks, as well as tags related to internationalization.

Return Value

[Missing <returns> documentation for "M:Facebook.Api.Controllers.NotificationsController.SendEmail(System.String[],System.String,System.String,System.String)"]

See Also

NotificationsController Class
Facebook.Api.Controllers Namespace