asp.net mvc - Send reminder email with a windows service -
we have asp.net mvc web app have installed in several clients/domains (more 100). web app works ms sql database running in windows server. domains in same service , running in separate databases in same ms sql server.
each client can create events users. talking days 1 client have more 200 events.
we need create window service running on server clients send, every few hours, reminder emails of each event each client.
as explained before each client has own database , there common database clients information , database names.
what service has check, each client, events have , send corresponding emails.
we don't know if better have 1 service go through clients or have service per client. if have 1 service have run , example, every 6 hours sending emails.
in case have service per client need create service asp.net web app, possible?
what best approach this?
you can use sql server integration service job. need write ssis package , schedule it.
on each execution of package can check data , send emails accordingly.
i hope idea help.
Comments
Post a Comment