CEmail.MimeHeader Method | |
Method to encode an MIME Attachment header
Namespace:
VO
Assembly:
VOInternetClasses (in VOInternetClasses.dll) Version: 2.21
Syntax VIRTUAL METHOD MimeHeader(
nCode,
xContentType,
cFile,
cCID
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual MimeHeader(
Usual nCode = default,
Usual xContentType = default,
Usual cFile = default,
Usual cCID = default
)
Request Example
View SourceParameters
- nCode (Optional)
- Type: Usual
Optional encoding type to use. VO supports the following two encodings:
CODING_TYPE_PRINTABLE (the default)
CODING_TYPE_BASE64
- xContentType (Optional)
- Type: Usual
Content type to use when encoding. The default is the content type of the message. When one of the following is used VO will assume that the file is part of the body:
If another type is used, VO will assume that the file is not part of the message body but an attachment
- cFile (Optional)
- Type: Usual
File name to use for the encoded header. This name is not used for the three content types mentioned above. - cCID (Optional)
- Type: Usual
** missing parameter documentation **
Return Value
Type:
Usual
The encoded string.
Remarks
The MimeHeader() method is called by the CEMail:StreamOut() method during the streaming of the message.
See Also