- Tag br in appsettings

- Attribute per controllo validità email
This commit is contained in:
2026-01-27 13:47:10 +01:00
parent d9512bab0f
commit 4022fd9ed4
7 changed files with 48 additions and 15 deletions

View File

@ -28,7 +28,7 @@ public class RegistrazioneMailProcessor : IMailProcessor
foreach (var chunk in mailQueueList.Chunk(size))
{
string body = string.Join("<br />", chunk.Select(x => x.ToList));
string body = string.Join(_config.MailSplitCharBody, chunk.Select(x => x.ToList));
try
{