//----------------------------------------------------------------------- // // Copyright (c) aliasvault. All rights reserved. // Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information. // //----------------------------------------------------------------------- namespace AliasVault.Client.Main.Components.Email; /// /// Available view modes for rendering an email body. /// public enum EmailViewMode { /// Rendered HTML (sanitized) in a sandboxed iframe. Html, /// Plain-text part rendered with a sans-serif font. Plain, /// Raw email source content as received by the email server. Source, }