DocumentManagerSendEmailWithDocuments Method (String, String, String, String, String, Int32, Int32, Boolean, String) |
Sends email with specified documents attached
Namespace:
FileHold.LibraryManager
Assembly:
FileHold.LibraryManager (in FileHold.LibraryManager.dll) Version: 17.0.0.0
Syntaxpublic bool SendEmailWithDocuments(
string to,
string cc,
string bcc,
string subject,
string body,
int[] metadataVersionIds,
int[] markupIds,
bool links,
string languageName
)
Parameters
- to
- Type: SystemString
Recipient's address or multiple addresses separated by semicolon. - cc
- Type: SystemString
CC address or multiple addresses separated by semicolon. - bcc
- Type: SystemString
BCC address or multiple addresses separated by semicolon. - subject
- Type: SystemString
Subject of the email. - body
- Type: SystemString
Body of the email. Links are automatically appended if link parameter is set to true. - metadataVersionIds
- Type: SystemInt32
Array of metadata version IDs of documents to attach or link. - markupIds
- Type: SystemInt32
Array of markup IDs to attach or link, usually null. - links
- Type: SystemBoolean
If true, links to documents are appended to email body. If false, documents are attached
to the email. - languageName
- Type: SystemString
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
Type:
Boolean
See Also