10 lines
402 B
C#
10 lines
402 B
C#
namespace Erp.MailQueue.Domain.Shared;
|
|
|
|
public class MailQueueWorkerOptions
|
|
{
|
|
public string MailType { get; set; } // Template Tipi
|
|
public string MailSubject { get; set; } // Mail konusu
|
|
public string MailTemplate { get; set; } // Render edilecek html template
|
|
public string Tablo { get; set; } // Bu maildeki tablolar örn. {0:MT3_GECIKEN_SIPARIS:IN:Order Delay Notification:0:}
|
|
}
|
|
|