MrRabbit
Results
2
comments of
MrRabbit
Hello I had the same problem but I changed ``` services.AddFluentEmail("[email protected]", "example") .AddSmtpSender(new SmtpClient("smtp.example.local", 25)); ``` to ``` services.AddFluentEmail(configuration["Smtp:From"], configuration["Smtp:FromDisplayName"]) .AddSmtpSender("smtp.example.local", 25); ``` This resolved this problem for me. I...
I think the best option is use IFluentEmailFactory and create FluentEmail for each send.