implementado emailer

This commit is contained in:
2024-08-04 02:03:46 +01:00
committed by fede
parent 8c8bf7d157
commit 65ba531e38
17 changed files with 433 additions and 0 deletions

10
Informes/ConfigEmail.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace Informes
{
public class ConfigEmail
{
public string EmailAddr { get; set; }
public string EmailPass { get; set; }
public List<string> EmailTarget { get; set; }
}
}