update 20241011

This commit is contained in:
Stefan Hutter
2024-10-11 21:38:02 +02:00
parent b8a392b514
commit 5bea1d4535
202 changed files with 995 additions and 289 deletions

18
OnDocMessage/Class1.cs Normal file
View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Mail;
using System.Text;
using System.Threading.Tasks;
namespace OnDocMessage
{
public class SendMessage
{
public void sendmessage(string empfaenger, string betreff, string mail)
{
SmtpClient client = new SmtpClient();
}
}
}