|
Summary
Send information for partial message.
Description
The OnPartial event will occur if the MessageType property is set to MESSAGE_PARTIAL or
if the Partial method is called in the OnSetHeader event. The OnSetHeader event will occur
when creating a message with the CreateMessage method. (The OnPartial event will also
occur if the deprecated Create or CreateX methods are called, and the Partial method or
the MessageType property is set to MESSAGE_PARTIAL in the OnHeader event.)
For a partial message, the parameters Number, Total and Id are
mandatory. The application must set the Number parameter to the part number which
indicates where this part fits into the sequence of parts. The Total is the total
number of parts. The Id is a unique identifier which is common to all the parts and
is used to match the parts.
For a partial message, the first part must include the header of the encapsulated
message. All other parts will not have a header
Example
Sub Mime_OnPartial (Number As Integer, Total As Integer,
Id As String)
Number = 1 ' first part
Total = 3 ' totally 3 parts
Id = "uniqueid1234"
End Sub
|