Skip to content

EmailSettings

// RB2 Core Connect
namespace CoreConnect.Email.Models;
public class EmailSettings
{
public string? ApiKey { get; set; }
public string? SenderName { get; set; }
public string? SenderEmail { get; set; }
public string? RecepientEmail { get; set; }
public List<EmailTemplates>? EmailTemplates { get; set; }
public List<TemplateVariablesDictionary>? TemplateVariables { get; set;}
public Dictionary<string, string>? Actions { get; set; }
}
public class TemplateVariablesDictionary
{
public string? Key { get; set; }
public string? TokenName { get; set; }
}