473,395 Members | 1,368 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Opinions: Timed bulk email via ASP.NET

Hi, I have a client who wants to have a remind me later feature on their
website.

Basically, people can say "Send me an email at a later date to remind me
about this website"
They then enter their name/ email and choose the day they would like to be
reminded on, pretty simple stuff.

Now, in the old days, I would have placed all this information into an SQL
database and then using a scheduled DTS package I would send emails calling
xp_smtp_sendmail or something similiar..

I am always open to new ideas so if anyone has any better ways to do things
I am all ears :)
TIA
Mark
Nov 19 '05 #1
5 1145
You could use a standard EXE launched from the Windows Task Manager.
Or you could use a Windows Service.

Here's more info on Windows Services:
http://msdn.microsoft.com/library/de...plications.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Mark" <ma**@Z-Zvolution.nZt> wrote in message
news:eP*************@TK2MSFTNGP09.phx.gbl...
Hi, I have a client who wants to have a remind me later feature on their
website.

Basically, people can say "Send me an email at a later date to remind me
about this website"
They then enter their name/ email and choose the day they would like to be
reminded on, pretty simple stuff.

Now, in the old days, I would have placed all this information into an SQL
database and then using a scheduled DTS package I would send emails
calling
xp_smtp_sendmail or something similiar..

I am always open to new ideas so if anyone has any better ways to do
things
I am all ears :)
TIA
Mark

Nov 19 '05 #2
Hi Steve, thanks. Sorry, I should have been more clear, ths is for a website
using shared hosting so I do not have access to creating a Windows service.

Thanks again
Mark
"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:uR**************@TK2MSFTNGP10.phx.gbl...
You could use a standard EXE launched from the Windows Task Manager.
Or you could use a Windows Service.

Here's more info on Windows Services:
http://msdn.microsoft.com/library/de...us/vbcon/html/
vbconintroductiontontserviceapplications.asp
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Mark" <ma**@Z-Zvolution.nZt> wrote in message
news:eP*************@TK2MSFTNGP09.phx.gbl...
Hi, I have a client who wants to have a remind me later feature on their
website.

Basically, people can say "Send me an email at a later date to remind me
about this website"
They then enter their name/ email and choose the day they would like to be reminded on, pretty simple stuff.

Now, in the old days, I would have placed all this information into an SQL database and then using a scheduled DTS package I would send emails
calling
xp_smtp_sendmail or something similiar..

I am always open to new ideas so if anyone has any better ways to do
things
I am all ears :)
TIA
Mark


Nov 19 '05 #3
"Mark" <ma**@Z-Zvolution.nZt> wrote in
news:Od**************@TK2MSFTNGP14.phx.gbl:
Hi Steve, thanks. Sorry, I should have been more clear, ths is for a
website using shared hosting so I do not have access to creating a
Windows service.


ASP.NET is not designed to handled scheduled events, but with a bit of
hacking you can do so:

How to Keep ASP.NET apps alive:
http://authors.aspalliance.com/paulw...rticles/?id=12

And I think it needs a slight fix:
http://weblogs.asp.net/ashben/archiv.../11/31579.aspx

Maybe these will help you out?
--
Lucas Tam (RE********@rogers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #4
"Mark" <ma**@Z-Zvolution.nZt> wrote in message
news:Od****************@TK2MSFTNGP14.phx.gbl...
Hi Steve, thanks. Sorry, I should have been more clear, ths is for a
website
using shared hosting so I do not have access to creating a Windows
service.


I have the same situation with the current arrangement I have with my ISP so
I didn't really have much option other than to use the SQL route.

However, if the site really takes off, I'll upgrade to a dedicated server,
whereupon I'll almost certainly go the Windows service route.
Nov 19 '05 #5
Thanks everyone for your help
Cheers
Mark
"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:#R**************@TK2MSFTNGP10.phx.gbl...
"Mark" <ma**@Z-Zvolution.nZt> wrote in message
news:Od****************@TK2MSFTNGP14.phx.gbl...
Hi Steve, thanks. Sorry, I should have been more clear, ths is for a
website
using shared hosting so I do not have access to creating a Windows
service.
I have the same situation with the current arrangement I have with my ISP

so I didn't really have much option other than to use the SQL route.

However, if the site really takes off, I'll upgrade to a dedicated server,
whereupon I'll almost certainly go the Windows service route.

Nov 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: jason | last post by:
What are the technical challenges in getting a local SMTP email server set up on a win3k system or alternatively on a win2k pro local work statation. We are on the verge of acquiring a new win3k...
2
by: Chris | last post by:
Any help would be appreciated. I am running a script that does the following in succession. 1-Drop existing database and create new database 2-Defines tables, stored procedures and functions...
2
by: David Sharp | last post by:
I've been doing some experiments with speeding up copying tables of approximately 1 million rows between databases using BCP and BULK INSERT. I noticed that the total time for removing the...
4
by: Jason | last post by:
Looking for some insight from the professionals about how they handle row inserts. Specifically single row inserts through a stored procedure versus bulk inserts. One argument are people who say...
5
by: me | last post by:
I'm also having problems getting the bulk insert to work. I don't know anything about it except what I've gleened from BOL but I'm not seeming to get anywhere...Hopefully there is some little (or...
7
by: iqbal | last post by:
Hi all, We have an application through which we are bulk inserting rows into a view. The definition of the view is such that it selects columns from a table on a remote server. I have added the...
6
by: pk | last post by:
Sorry for the piece-by-piece nature of this post, I moved it from a dormant group to this one and it was 3 separate posts in the other group. Anyway... I'm trying to bulk insert a text file of...
16
by: Philip Boonzaaier | last post by:
I want to be able to generate SQL statements that will go through a list of data, effectively row by row, enquire on the database if this exists in the selected table- If it exists, then the colums...
2
by: Ted | last post by:
I have BULK INSERT T-SQL statements that work for all of my basic data tables except for one. Here is the problem statement (with obvious replacement of irrelevant path info): BULK INSERT...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.