2026-02-24 20:44:16 +00:00
|
|
|
|
namespace Sozsoft.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
|
2026-06-26 20:53:30 +00:00
|
|
|
|
public string TableName { get; set; } // Bu maildeki tablolar örn. {0:MT3_GECIKEN_SIPARIS:IN:Order Delay Notification:0:}
|
2026-02-24 20:44:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|