dahall / TaskScheduler

Provides a .NET wrapper for the Windows Task Scheduler. It aggregates the multiple versions, provides an editor and allows for localization.
MIT License
1.22k stars 194 forks source link

How to send automated mail #868

Closed cuongpv88 closed 3 years ago

cuongpv88 commented 3 years ago

Hi, I want to use TaskScheduler in my Blazor project. There are ways to implement automatic mailing of user notifications. Thanks

dahall commented 3 years ago

The Windows Task Scheduler allows you to send a fixed email message to a fixed recipient based on a system trigger. It uses PowerShell to actually perform the email action. Unless you need to react to a system event, I would encourage you to look at other SMTP libraries or PowerShell to do mailing.

cuongpv88 commented 3 years ago

Thanks for your feedback