473,399 Members | 2,159 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,399 software developers and data experts.

async process for bulk emailer

Max
Just a simple question, can I run an asyc process on the server (with
ASP.NET) for hours at a time to do things like send bulk emails? Are there
some restrictions and timeouts that are set by the hosting companies? I use
shared hosting.

-M
Nov 17 '05 #1
4 1930

"Max" <ma*****@portvista.com> wrote in message
news:_q**********************@twister.tampabay.rr. com...
Just a simple question, can I run an asyc process on the server (with
ASP.NET) for hours at a time to do things like send bulk emails? Are there
some restrictions and timeouts that are set by the hosting companies? I use shared hosting.

-M


Are you sure that your hosting company will allow spamming?
It might give high CPU/bandwidth usage, which will be a problem in a
shared environment.

Hans Kesting
Nov 17 '05 #2
Max
I have a client with a small opt-in mailing list of about 2000 email
addresses. I'd like to use ASP.NET to help automate this, including adding
an instant removal system. So I'm asking if using an async process would
work here, before I dig into the code. I saw an example of it done with web
services, so I figure the same would work for the mail object.

With the removal system, I figure I could write a mail client in asp.net to
hit the POP3 and check returned messages for reject keywords under that
account. That's step 2 though.

-M
"Hans Kesting" <ne***********@spamgourmet.com> wrote in message
news:uz*************@TK2MSFTNGP10.phx.gbl...

"Max" <ma*****@portvista.com> wrote in message
news:_q**********************@twister.tampabay.rr. com...
Just a simple question, can I run an asyc process on the server (with
ASP.NET) for hours at a time to do things like send bulk emails? Are there some restrictions and timeouts that are set by the hosting companies? I

use
shared hosting.

-M


Are you sure that your hosting company will allow spamming?
It might give high CPU/bandwidth usage, which will be a problem in a
shared environment.

Hans Kesting

Nov 17 '05 #3
2000 emails is really not that much at all. There isn't any need for
async handling.

I've run into this situtaion before with my customers. So I've
written a tutorial to do this.

Although it focuses on my component, if you are starting to program
async sockets, you should be able to easily port the technique to your
own needs.

Sending 1000s of emails from a web page without timing out
http://www.aspnetemail.com/samples/webmailer/

Also, consider writing to the SMTP Pickup directory, then you don't
have to worry about network issues

Writing to Queue Directories
http://www.aspnetemail.com/help/welc...eue_intro.html
hth,
Dave
www.aspNetEmail.com
"Max" <ma*****@portvista.com> wrote in message news:<7i*******************@twister.tampabay.rr.co m>...
I have a client with a small opt-in mailing list of about 2000 email
addresses. I'd like to use ASP.NET to help automate this, including adding
an instant removal system. So I'm asking if using an async process would
work here, before I dig into the code. I saw an example of it done with web
services, so I figure the same would work for the mail object.

With the removal system, I figure I could write a mail client in asp.net to
hit the POP3 and check returned messages for reject keywords under that
account. That's step 2 though.

-M
"Hans Kesting" <ne***********@spamgourmet.com> wrote in message
news:uz*************@TK2MSFTNGP10.phx.gbl...

"Max" <ma*****@portvista.com> wrote in message
news:_q**********************@twister.tampabay.rr. com...
Just a simple question, can I run an asyc process on the server (with
ASP.NET) for hours at a time to do things like send bulk emails? Are there some restrictions and timeouts that are set by the hosting companies? I use shared hosting.

-M


Are you sure that your hosting company will allow spamming?
It might give high CPU/bandwidth usage, which will be a problem in a
shared environment.

Hans Kesting

Nov 17 '05 #4
2000 emails is really not that much at all. There isn't any need for
async handling.

I've run into this situtaion before with my customers. So I've
written a tutorial to do this.

Although it focuses on my component, if you are starting to program
async sockets, you should be able to easily port the technique to your
own needs.

Sending 1000s of emails from a web page without timing out
http://www.aspnetemail.com/samples/webmailer/

Also, consider writing to the SMTP Pickup directory, then you don't
have to worry about network issues

Writing to Queue Directories
http://www.aspnetemail.com/help/welc...eue_intro.html
hth,
Dave
www.aspNetEmail.com
"Max" <ma*****@portvista.com> wrote in message news:<7i*******************@twister.tampabay.rr.co m>...
I have a client with a small opt-in mailing list of about 2000 email
addresses. I'd like to use ASP.NET to help automate this, including adding
an instant removal system. So I'm asking if using an async process would
work here, before I dig into the code. I saw an example of it done with web
services, so I figure the same would work for the mail object.

With the removal system, I figure I could write a mail client in asp.net to
hit the POP3 and check returned messages for reject keywords under that
account. That's step 2 though.

-M
"Hans Kesting" <ne***********@spamgourmet.com> wrote in message
news:uz*************@TK2MSFTNGP10.phx.gbl...

"Max" <ma*****@portvista.com> wrote in message
news:_q**********************@twister.tampabay.rr. com...
Just a simple question, can I run an asyc process on the server (with
ASP.NET) for hours at a time to do things like send bulk emails? Are there some restrictions and timeouts that are set by the hosting companies? I use shared hosting.

-M


Are you sure that your hosting company will allow spamming?
It might give high CPU/bandwidth usage, which will be a problem in a
shared environment.

Hans Kesting

Nov 17 '05 #5

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

Similar topics

6
by: Vanessa | last post by:
I have a question regarding async mode for calling Microsoft.XMLHTTP object. Microsoft.XMLHTTP hangs the IE once in a while suddenly, but it will work again after half an hour or so without doing...
6
by: Amy L. | last post by:
I am working on a project where I will have a ton of async DNS calls in a console application. I would like to process the results of the Aync calls on the same thread that made the async call. ...
10
by: Shawn Meyer | last post by:
Hello - I am trying to write a class that has an async BeginX and EndX, plus the regular X syncronous method. Delegates seemed like the way to go, however, I still am having problems getting...
6
by: gabriel.landais | last post by:
Hi, I'm currently building a parser class in JS and I have a question about variables. I retrieve XML data and then process it. After that, I process a result array (mydataarray). It looks like...
5
by: JDS | last post by:
Hi. I have installed the PCNTL functions on my PHP enabled webserver in the interest of being able to fork a process into the background so I can do some heavy processing but return control of the...
0
by: Cwappy | last post by:
I have a class that builds a DataTable and then, when the process is exiting, tries to write that DataTable to SQL Server 2000 via the SqlBulkCopy class. I know the process is exiting because I'm...
1
by: David | last post by:
Hi! I am looking to integrate a bulk emailing system into my web site. I am trying to find a web-based solution but it seems difficult to find anything relevant. There are lot of system available...
2
by: VinodKApadnis | last post by:
hi friends I want to send thousands of mails I use following function to send the mail but it returns following error Warning: mail() : SMTP server response: 552 Too many recipients in...
4
by: Marcolino | last post by:
Hi All, I'm using this code provided by Michael to run Async process: ...
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: 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
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.