Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParameterDescription
sessionContains a MAPI session handle returned by MAPILogon.
ParentContains the name of an OpenInsight parent window. If not specified any dialog box displayed will be application modal.
IdContains the id of the message which is to be read. Message ids are returned by MAPIOpenMail and MAPISaveMail.
flagsContains information about how the message should be read. It could be MAPI_ENVELOPE_ONLY$, MAPI_SUPPRESS_ATTACH$, MAPI_BODY_AS_FILE$, MAPI_PEEK$, or a combination of these flags.
  • MAPI_ENVELOPE_ONLY$ indicates that the message's text and file attachments should not be read.
  • MAPI_SUPPRESS_ATTACH$ indicates that the message's file attachments should not be read.
  • MAPI_BODY_AS_FILE$ indicates that the message's text should be returned as the first file attachment rather than included in the message structure.
  • MAPI_PEEK$ indicates that the message should not be marked as unread.

The insert record MAPI_EQUATES contains these flags. You may combine flags by adding them together with an addition sign (+).

messageOn output contains the message record which has been read. The message record structure is detailed in the following table.

After the function completes successfully the message parameter will contain the information read from the specified message including a list of paths to any temporary copies of file attachments. When the application is through processing the file attachments it is responsible for deleting the temporary copies with calls to the OSDelete function.

Use the MAPI_EQUATES insert record for access to the values in the following table.

Column positionNamePurpose
1subjectThe subject of the message.
2fromThe sender of the message.
3to@VM-delimited list of the message's To: recipients.
4cc@VM-delimited list of the message's CC: recipients.
5bcc@VM-delimited list of the message's BCC: recipients.
6dateThe date the message was received.
7textThe text of the message.
8typeThe type of the message.
9flagsThe attributes of the message. It could be MAPI_UNREAD$, MAPI_RECEIPT_REQUESTED$, MAPI_SENT$, or a combination of these flags.
  • MAPI_UNREAD$ indicates that the message has not been read.
  • MAPI_RECEIPT_REQUESTED$ indicates that the sender should be notified when the message is received.
  • MAPI_SENT$ indicates that the message has been sent.

The insert record MAPI_EQUATES contains these flags.

10files@VM-delimited list of the names of files attached to the message.
11paths@VM-delimited list of the paths to temporary copies of files attached to the message.
12positions@VM-delimited list of the positions within the text of files attached to the message.

...