Visual Studio .NET - 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
Is it possible using script/c# in asp.net web application. if no any other solutions?
Windows service....
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...
Sunil Lakshkar replied to Jobi K John
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 ..
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
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...
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
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

Interview Questions for .NET Framework This article is specially for the users those are in development or want to be a .net developer • To test a Web Service you must create a windows application or web application to consume this service? It is True / False? FALSE How many classes can a single NET DLL contain? Answer1: As many Answer2: One or more What are good ADO.NET object(s) to replace the ADO Recordset object? The differences includes In ADO, the in-memory representation of data is the recordset. In ADO.net, it is the dataset A recordset looks like a single table in ADO In contrast a dataset is a collection of one or more tables in ADO.net ADO is designed primarily for connected access ADO.net the disconnected access to the database
Frequently asked Interview Questions in ADO.Net hi friends Any one send frequently asked Important questions in C# .Net, ADO .Net, Asp .Net and Sql Server. . . . . . . . tx in Advance. . . . . . Hi, Find this. . (B)What is an IL? (B B) What is concept of Boxing and Unboxing ? (B) What is the difference between VB.NET and C#? (I) what is the difference between System exceptions and Application exceptions? (I)What is CODE Access security? (I)What is a satellite assembly? (A) How to prevent my .NET DLL to be decompiled? (I) what is the difference between Convert.toString and .toString () method assembly in GAC how do we make a choice? (A)What is CodeDom? Chapter 2: NET Interoperability (I) How can we use COM Components in .NET? (I) We have developed the
visual studio installation problem Actually, my OS is Windows Xp with service pack2.I added service pack3 to install visual studio2010.after that i tryed to installed, but am getting SETUP FAILED due to "Windows XP is not installed. [08 / 10 / 11, 14:26:00] VS70pgui: [2] DepCheck indicates Microsoft Visual F# 2.0 Runtime was not attempted to be installed. [08 / 10 / 11, 14:26:00] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio Macro Tools was not attempted to be installed. [08 / 10 / 11, 14:26:00] VS70pgui not attempted to be installed. [08 / 10 / 11, 14:26:00] VS70pgui: [2] DepCheck indicates .NET Framework 4 Multi-Targeting Pack was not attempted to be installed. [08 / 10 / 11, 14:26:01] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 Professional - ENU was not attempted to be installed. [08 / 10 / 11, 14:26
Migrating to Visual Studio.NET 2003: A Developer Perspective Migrating to Visual Studio.Net 2003: A Developer - oriented analysis By Peter A. Bromberg, Ph.D. Printer - Friendly Version Peter Bromberg A new Platform On April 24, 2003 Microsoft Windows Server 2003 and Visual Studio .NET 2003 are officially released. Many developers and beta testers (myself included) have been feverishly
state / globle varible ? There are occasions when you need to define global variables in an application that are available to all modules of that application. In ASP.NET, it can be done by application state. You can directly add and remove items to the application state. The HttpApplicationState object represents the application state in ASP.NET. The HttpApplicationState object is created when a client requests any URL resource from within an ASP.NET application virtual directory. The reference to this object is exposed through the Application object. You