Possible to auto-send an email to recipients from a stored list in specified intervals?

Asked By Jobi K John
13-May-08 04:48 AM
Earn up to 0 extra points for answering this tough question.
Is it possible using script/c# in asp.net web application. if no any other solutions?

  Windows service....

Vasanthakumar D replied to Jobi K John
13-May-08 04:56 AM

Hi,

you can create a windows serivce which will send a mail to recipents in the list...

you can set the time for service for a specific interval...

  RE:Yes

Sunil Lakshkar replied to Jobi K John
13-May-08 04:58 AM

Yes it is possible,

Using windows services you can ahieve that.

Create windows service, it will be called automatically on specified time and execute the code for sending mails.

  yes, but with ..

Santhosh N replied to Jobi K John
13-May-08 05:14 AM

You can do this task using windows service and doing it using timer in the service..

but the limitation is the system should be up running in order for the service to be running..

 

  Check this
sri sri replied to Jobi K John
13-May-08 05:27 AM
Hi,
You can trigger the mail in regular intervals with the help of windows service.
Windows service is a small scheduler program.

for further info about windows service visit the following links
http://www.c-sharpcorner.com/UploadFile/mahesh/window_service11262005045007AM/window_service.aspx

http://www.codeproject.com/KB/system/WindowsService.aspx
  Auto-sending emails...
  Use Console Application to email + Scheduled Tasks to schedule
mv ark replied to Jobi K John
13-May-08 06:08 AM
You can consider using a Console Application to send mails & the "Scheduled Tasks" Control Panel applet to schedule delivery.

This article explains how to do that with a code sample -
http://www.15seconds.com/issue/080508.htm
Create New Account