// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== namespace Squidex.Extensions.Actions.Email { public sealed class EmailOptions { public string Host { get; set; } public int Port { get; set; } public bool EnableSsl { get; set; } public string Username { get; set; } public string Password { get; set; } } }