DocumentManagerSendEmailWithDocuments(String, String, String, String, String, Int32, Int32, Boolean, String) Method

Sends email with specified documents attached

Definition

Namespace: FileHold.LibraryManager
Assembly: FileHold.LibraryManager (in FileHold.LibraryManager.dll) Version: 17.1.0.0
C#
[WebMethodAttribute(Description = "Sends email with specified documents attached")]
public bool SendEmailWithDocuments(
	string to,
	string cc,
	string bcc,
	string subject,
	string body,
	int[] metadataVersionIds,
	int[] markupIds,
	bool links,
	string languageName
)

Parameters

to  String
Recipient's address or multiple addresses separated by semicolon.
cc  String
CC address or multiple addresses separated by semicolon.
bcc  String
BCC address or multiple addresses separated by semicolon.
subject  String
Subject of the email.
body  String
Body of the email. Links are automatically appended if link parameter is set to true.
metadataVersionIds  Int32
Array of metadata version IDs of documents to attach or link.
markupIds  Int32
Array of markup IDs to attach or link, usually null.
links  Boolean
If true, links to documents are appended to email body. If false, documents are attached to the email.
languageName  String
Name of the language used to generate links to document. It should be in the format accepted by the CultureInfo contstructor, usually a lowercase two-letter code derived from ISO 639-1 (for example "en").

Return Value

Boolean

See Also