- Methode `FillTemplate` für Platzhalterersetzung hinzugefügt. - `TemplatePlaceholderAttribute` eingeführt. - `EmailOutService` mit Vorlagenmethoden aktualisiert. - Unit-Tests für Vorlagenverarbeitung hinzugefügt.
14 lines
312 B
C#
14 lines
312 B
C#
namespace DigitalData.EmailProfilerDispatcher.Domain.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class TemplatePlaceholderAttribute : Attribute
|
|
{
|
|
public readonly string Placeholder;
|
|
|
|
public TemplatePlaceholderAttribute(string placeholder)
|
|
{
|
|
Placeholder = placeholder;
|
|
}
|
|
}
|
|
}
|