DocumentManagerSendEmailWithDocumentVersions Method

Sends email with specified document versions attached

Definition

Namespace: FileHold.LibraryManager
Assembly: FileHold.LibraryManager (in FileHold.LibraryManager.dll) Version: 17.2.0.0
C#
[WebMethodAttribute(Description = "Sends email with specified document versions attached")]
public bool SendEmailWithDocumentVersions(
	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

Remarks

The link to the specific versions of the documents are sent regardles of the link settings.

See Also