|
Summary
Absolute URI of the data.
Description
The ContentBase property specifies the absolute 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 ContentBase 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 = .(JavaScript must be enabled to view this email address)
MIME.ContentBase = http://www.foo.com
MIME.ContentLocation = "/images/imgc/logo.gif"
.
.
End Sub
|