|
Summary
MIME or non-MIME message. This property has been deprecated and should not be used.
When calling the CreateMessage method the IsMime parameter is passed to specify whether
the message will be MIME or non-MIME.
Description
The IsMime property specifies whether the message to be created is a MIME message or a
non-MIME message. This property must be set to the appropriate value before setting the
Action property to ACTION_CREATE.
The IsMime property must be set to True for a MIME message and to False for a non-MIME
message.
This property can be changed at design time and at run time (before creating a
message). There is no default value for this property.
Example
Mime.Destination = "c:\temp\test.msg"
Mime.IsMime = True
Mime.ContentType = "message"
Mime.Subtype = "partial"
Mime.Action = ACTION_CREATE
|