Discuss this help topic in SecureBlackbox Forum

TElMessage.BodyEncoding

TElMessage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies how to encode the message body when assembling the message.

Declaration

[C#]
    string BodyEncoding;

[VB.NET]
    Property BodyEncoding As String

[Pascal]
    property BodyEncoding : string;

[C++]
    void get_BodyEncoding(std::string &OutResult);
    void set_BodyEncoding(const std::string &Value);

[PHP]
    string get_BodyEncoding()
    void set_BodyEncoding(string $Value)

[Java]
    String getBodyEncoding();
    void setBodyEncoding(String Value);

Description

    Use this property to specify desired encoding for the message body. Possible values are base64, quoted-printable, 8bit, 7bit. Any other value will cause the encoding to be determined automatically from the data.
   This property is used when short form of AssembleMessage() method is called.

See also:     BodyEncoding     HeaderEncoding    

Discuss this help topic in SecureBlackbox Forum