|
Summary
Unique id for the root body of a multipart message.
Description
The MultipartStart property should be set to the unique id of the root body of a
multipart MIME message. This property is optional, and only relevant to Multipart/Related
MIME messages. If this property is not set then first part of the multipart message will
be treated as the root.
If used this property should be set in the OnSetHeader events, after the CreateMessage
method has been called.
The MIME ActiveX control will set this property during the message extraction process
immediately prior to firing the OnRecvHeader event (In response to calling the
ExtractMessageEnd method).
This property can be set at any time. There is no default value for this property.
Example
Private Sub MIME_OnSetHeader(Info As String, Length As Integer, Status As Integer)
Mime.ContentType = "text"
Mime.SubType = "text"
Mime.ContentId = id130@foo.com
Mime.MultipartType = "multipart"
Mime.MultipartStart = id129@foo.com
Mime.FileName = ""
Mime.Encoding = ""
.
.
End Sub
|