Difference between revisions of "TSmtpCli.Allow8BitChars"

From Overbyte
Jump to navigation Jump to search
 
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:
  
 
If set to FALSE enables encoding of header lines and MailMessage text.
 
If set to FALSE enables encoding of header lines and MailMessage text.
The component detects whether a string contains 8-bit characters and encodes it either quoted-printable or base64 internally if required. In order to enforce encoding set property [[TSmtpCli.DefaultEncoding | '''DefaultEncoding''']] to either smtpQuotedPrintable or smtpBase64.
+
The component detects whether a string contains 8-bit characters and encodes it either quoted-printable or base64 internally if required. In order to enforce encoding set property [[TSmtpCli.DefaultEncoding | '''DefaultEncoding''']] to either smtpEncQuotedPrintable or smtpEncBase64.
 
 
== Example ==
 
  
 
== Best practices ==
 
== Best practices ==
 +
Set it to FALSE. The default value is TRUE for backwards compatibility only!
  
 
== How to ==
 
== How to ==

Latest revision as of 12:10, 29 May 2009

Main page -> ICS component reference -> TSmtpCli -> Allow8BitChars

Definition

property Allow8BitChars: Boolean;

Description

If set to FALSE enables encoding of header lines and MailMessage text. The component detects whether a string contains 8-bit characters and encodes it either quoted-printable or base64 internally if required. In order to enforce encoding set property DefaultEncoding to either smtpEncQuotedPrintable or smtpEncBase64.

Best practices

Set it to FALSE. The default value is TRUE for backwards compatibility only!

How to