NotesNewsletter (LotusScript®)

A document or set of documents that contain information from, or links to, several other documents.

Containment

Contained by: NotesSession

Contains: NotesDocument

Properties

DoScore

DoSubject

Parent

SubjectItemName

Methods

FormatDocument

FormatMsgWithDoclinks

New

Creation

To create a new NotesNewsletter, you use a NotesDocumentCollection containing the documents you want, and one of the following:

  • New
Note: The New method is not supported in COM.
  • CreateNewsletter method in NotesSession

Syntax

Dim variableName As New NotesNewsletter( notesDocumentCollection )

OR

Set notesNewsletter = New NotesNewsletter( notesDocumentCollection )

Parameters

notesDocumentCollection

The documents that you want included in the newsletter.

Usage

Once you create a newsletter with New, there are two things you can do with it:

  • Use the FormatDocument method to create a new document with a rendering (snapshot) of one of the documents in the collection.
  • Use the FormatMsgWithDoclinks method to create a new document with links to each of the documents in the collection.

Example