Click or drag to resize
MimeKit

MimeMessagePrepare Method

Prepare the message for transport using the specified encoding constraints.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public virtual void Prepare(
	EncodingConstraint constraint,
	int maxLineLength = 78
)

Parameters

constraint  EncodingConstraint
The encoding constraint.
maxLineLength  Int32  (Optional)
The maximum allowable length for a line (not counting the CRLF). Must be between 60 and 998 (inclusive).
Exceptions
ExceptionCondition
ArgumentOutOfRangeException

maxLineLength is not between 60 and 998 (inclusive).

-or-

constraint is not a valid value.

Remarks
Prepares the message for transport using the specified encoding constraints.
See Also