feat: E-Mail-Vorlagenverarbeitung hinzufügen
- Methode `FillTemplate` für Platzhalterersetzung hinzugefügt. - `TemplatePlaceholderAttribute` eingeführt. - `EmailOutService` mit Vorlagenmethoden aktualisiert. - Unit-Tests für Vorlagenverarbeitung hinzugefügt.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace DigitalData.EmailProfilerDispatcher.Domain.Attributes
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public class TemplatePlaceholderAttribute : Attribute
|
||||
{
|
||||
public readonly string Placeholder;
|
||||
|
||||
public TemplatePlaceholderAttribute(string placeholder)
|
||||
{
|
||||
Placeholder = placeholder;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user