ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Lotus Notes functions / Notes functions
  • Initials of a contact
  • Email recipient
  • Email recipient
  • Email recipient
NotesItem (Example)
Initials of a contact
The following example is used to retrieve the initials of the 1st contact.
// Retrieve the initials of the 1st contact
ContactFirst(SessionID)
Info("The initials of" + mContact.FirstName + " " + mContact.LastName + "are:" + ...
NotesItem(SessionID, "Initials"))
Email recipient
The following example is used to retrieve the 1st recipient of the 1st email.
// Retrieve the 1st recipient of the 1st email
EmailReadFirst(SessionID)
Recipient is string
Recipient = NotesItem(SessionID, "INetSendTo", 1)
Email recipient
The following example is used to retrieve the recipients of the 1st email.
// Retrieve the recipients of the 1st email
EmailReadFirst(SessionID)
// Add these recipients into a List Box control
ListAdd(LIST_RecipientList, NotesItem(SessionID, "INetSendTo"))
Email recipient
The following example is used to retrieve the recipients of the 1st email.
// Retrieve the recipients of the 1st email
EmailReadFirst(SessionID)
arrRecipient is array of 0 string
ARecipient is string
NotesItem(SessionID, "INetSendTo", arrRecipient)
// Add these recipients into a List Box control
FOR EACH ELEMENT ARecipient OF arrRecipient
ListAdd(LIST_RecipientList, ARecipient)
END
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help