|
Summary
Relative URI of the data.
Description
The ContentLocation property specifies the relative URI of the data in a MIME message.
This property is used to indicate to the recipient that the same data is retrievable
through the use of the given URI.
The ContentLocation property is optional, and only relevant for Multipart\Related MIME
messages. If used, it 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 changed 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 = "image"
MIME.Subtype = "gif"
MIME.ContentId = id129@foo.com
MIME.ContentBase = http://www.foo.com
MIME.ContentLocation = "/images/logo.gif"
.
.
End Sub
|