Table of Contents

Class SendGlobalTemplateEmailRequest

Namespace
KadicAuth.Application.Common
Assembly
KadicAuth.Application.dll
public sealed record SendGlobalTemplateEmailRequest
Inheritance
object
SendGlobalTemplateEmailRequest

Constructors

SendGlobalTemplateEmailRequest(string, IEnumerable<string>, IEnumerable<string>?, Dictionary<string, object>, Guid, bool, DateTimeOffset?)

public SendGlobalTemplateEmailRequest(string TemplateCode, IEnumerable<string> To, IEnumerable<string>? Cc, Dictionary<string, object> Data, Guid ChannelId, bool SendNow = true, DateTimeOffset? ScheduledFor = null)

Parameters

TemplateCode string
To IEnumerable<string>
Cc IEnumerable<string>
Data Dictionary<string, object>
ChannelId Guid
SendNow bool
ScheduledFor DateTimeOffset?

Properties

Cc

public IEnumerable<string>? Cc { get; init; }

Property Value

IEnumerable<string>

ChannelId

public Guid ChannelId { get; init; }

Property Value

Guid

Data

public Dictionary<string, object> Data { get; init; }

Property Value

Dictionary<string, object>

ScheduledFor

public DateTimeOffset? ScheduledFor { get; init; }

Property Value

DateTimeOffset?

SendNow

public bool SendNow { get; init; }

Property Value

bool

TemplateCode

public string TemplateCode { get; init; }

Property Value

string

To

public IEnumerable<string> To { get; init; }

Property Value

IEnumerable<string>