SecureBlackbox 2020 iOS Edition

Questions / Feedback?

textEncoding (property)

The encoding to be applied to the message.

Syntax

@property (nonatomic,readwrite,assign,getter=textEncoding,setter=setTextEncoding:) int textEncoding;
- (int)textEncoding;
- (void)setTextEncoding:(int)newTextEncoding;

/* Possible Values */
ME_AUTO(0),
ME_8BIT(1),
ME_BASE_64(2),
ME_QUOTED_PRINTABLE(3)
public var textEncoding: MailwriterTextEncodings {
  get {...}
set {...} }
public enum MailwriterTextEncodings : Int32 { case meAuto = 0 case me8bit = 1 case meBase64 = 2 case meQuotedPrintable = 3 }

Default Value

0

Remarks

Use this property to specify the encoding to use for the content of the message.

meAuto0
me8bit1
meBase642
meQuotedPrintable3

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 iOS Edition - Version 20.0 [Build 8166]