Discuss this help topic in SecureBlackbox Forum

TElMessage.AttachEncoding

TElMessage     See also     


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


Specifies how to encode attachments when assembling the message.

Declaration

[C#]
    string AttachEncoding;

[VB.NET]
    Property AttachEncoding As String

[Pascal]
    property AttachEncoding : string;

[C++]
    void get_AttachEncoding(std::string &OutResult);
    void set_AttachEncoding(const std::string &Value);

[PHP]
    string get_AttachEncoding()
    void set_AttachEncoding(string $Value)

[Java]
    String getAttachEncoding();
    void setAttachEncoding(String Value);

Description

    Use this property to specify desired encoding for attachments. 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     AssembleMessage    

Discuss this help topic in SecureBlackbox Forum