MultiPart property: MCFOutboundEmail class
Description
The email can contain simple text, one attachment, or a MultiPart object.
If you have assigned a MultiPart object using this property, the text and attachment related properties are ignored.
This property is read/write.
Example
Local PT_MCF_MAIL:MCFMultipart &mp = create PT_MCF_MAIL:MCFMultipart();
&mp.SubType = "alternative; differences=Content-type";
&mp.AddBodyPart(&text);
&mp.AddBodyPart(&html);
&email.MultiPart = ∓