search
Japanese Chinese Nederlands Espanol Italiano Deutsch Francais Twitter Rss Feeds
MicrosoftArticlesForumsFAQs
C# .NET
VB.NET
Visual Studio .NET
ADO.NET
Xml / Xslt
VB 6.0
.NET CF
GDI+
LINQ
Deployment
Security
FoxPro
Silverlight / WPF
Entity Framework
RIA Services

Web ProgrammingArticlesForumsFAQs
JavaScript
ASP
ASP.NET
Web Services

Non-MicrosoftArticlesForumsFAQs
NHibernate
Perl
PHP
Ruby
Java
Linux / Unix
Apple
Open Source

DatabasesArticlesForumsFAQs
SQL Server
Access
Oracle
MySQL
Other Databases

OfficeArticlesForumsFAQs
Excel
Word
Powerpoint
Outlook
Publisher
Money

Operating SystemsArticlesForumsFAQs
Windows 7
Windows Server
Windows Vista
Windows XP
Windows Update
MAC
Linux / UNIX

Server PlatformsArticlesForumsFAQs
BizTalk
Site Server
Exhange Server
IIS

Graphic DesignArticlesForumsFAQs
Macromedia Flash
Adobe PhotoShop
Expression Blend
Expression Design
Expression Web

OtherArticlesForumsFAQs
Subversion / CVS
Ask Dr. Dotnetsky
Active Directory
Networking
Uninstall Virus
Job Openings
Product Reviews
Search Engines
Resumes

 

View Other Visual Studio .NET Posts   Ask New Question 
Possible to auto-send an email to recipients from a stored list in specified intervals?
Jobi K John posted at Tuesday, May 13, 2008 4:48 AM
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 at Tuesday, May 13, 2008 4: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 at Tuesday, May 13, 2008 4: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 ..
egg egg replied to Jobi K John at Tuesday, May 13, 2008 5: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 at Tuesday, May 13, 2008 5: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...
Rakesh Vikram replied to Jobi K John at Tuesday, May 13, 2008 5:50 AM

Refer this link. Code is also provided. This may help you.

http://www.dnknormark.net/post/Sending-e-mails-from-your-ASPNET-app-and-maintaining-a-list-of-recipients.aspx

and

http://www.dnknormark.net/post/ASPNET-Server-Control-FeedList---List-most-recent-items-from-an-RSS-feed-as-links.aspx

Rakesh Vikram

 
  Use Console Application to email + Scheduled Tasks to schedule
mv ark replied to Jobi K John at Tuesday, May 13, 2008 6: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