Open Source Paid Email Schedule

Does anyone know of a solution (preferably open source, so that I can customize it according to my needs) to automatically send emails at scheduled intervals ?

If not, can anyone recommend .NET technology that I could use to achieve this? I thought about using the Windows Service for this application, but the problem is that I have no experience developing Windows Services. I would like to create a solution for deploying WCF or ASP.NET, but I'm not sure if the architecture of WCF or ASP.NET will allow me to do this without any ugly hacks.

Thank.

+3
source share
3 answers

MailSystem.NET contains everything you need, including a template-based merge system and a message queue service that supports scheduling.

It is free and open source.

+5
source

It is very easy to build one yourself.

Theres a mail client in the System.Net namespace, and you have a planning component: http://quartznet.sourceforge.net/

As for Windows services, it is not so difficult. Visual Studio has a type of Windows service project that you can use to get everything you need. Just enter some classes with your logic.

+4
source

" ".

, , . , , .

+1
source

Source: https://habr.com/ru/post/1777315/


All Articles