adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / EmailSaveFormat Enumeration


In This Topic
    EmailSaveFormat Enumeration
    In This Topic
    The format used when saving an email message
    Syntax
    'Declaration
     
    
    Public Enum EmailSaveFormat 
       Inherits System.Enum
    public enum EmailSaveFormat : System.Enum 
    public enum class EmailSaveFormat : public System.Enum 
    Members
    MemberValueDescription
    AttachmentsOnly5 The attachments are saved but not the message itself.
    HTML3 The body of the message is saved in HTML format if available. If HTML format is not available in the message, the text format is saved. Attachments are saved in separate files. Header information is not available in the saved file.
    None0 The e-mail message is not saved.
    RFC8221 Internet standard RFC 822 message file, containing all headers, body parts, and attachments.
    RFC822WithAttachments2 Internet standard RFC 822 message file, containing all headers, body parts, and attachments. Additionally, attachments will be extracted and saved in separate files.
    Text4 The body of the message is saved in plain text format if available. If plain text format is not available in the message, the HTML format is saved. Attachments are saved in separate files. Header information is not available in the saved file.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcanaDevelopment.adTempus.Shared.EmailSaveFormat

    See Also