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

system.net.mail

we have to mass email around 3000 to 10000 emails to clients with
attachments. can i use system.net.mail to accomplish this task from the
server? all my info is in a csv format along with paths to all the
attachments which will be transfered to the server and saved to a temp
location. am i on the rigth path or should i look into something else?
thanks in advance
Oct 31 '06 #1
4 2248
can i use system.net.mail to accomplish this task from the server?

As far as I know, yes.

Here's a site that may help:

http://www.systemnetmail.com/

Thanks,

Seth Rowe
RedMoosh wrote:
we have to mass email around 3000 to 10000 emails to clients with
attachments. can i use system.net.mail to accomplish this task from the
server? all my info is in a csv format along with paths to all the
attachments which will be transfered to the server and saved to a temp
location. am i on the rigth path or should i look into something else?
thanks in advance
Oct 31 '06 #2
=?Utf-8?B?UmVkTW9vc2g=?= <Re******@discussions.microsoft.comwrote in
news:67**********************************@microsof t.com:
we have to mass email around 3000 to 10000 emails to clients with
attachments. can i use system.net.mail to accomplish this task from the
server? all my info is in a csv format along with paths to all the
attachments which will be transfered to the server and saved to a temp
location. am i on the rigth path or should i look into something else?
thanks in advance

Yes System.Net.Mail should work.

Just make sure you multi-thread the connections to pump out as many
messages as possible

Also take a look at software designed for bulk e-mail messaging. We use the
following server (works well with .NET):

http://www.quiksoftcorp.com/smtpexpress/

SMTP Express is able to blast messages out REALLY fast.

Lastly, you might want to use a secondary mail server (different IP/subnet)
in case you get blacklisted for spamming (it's a hassle to get off RBLs).
Or consider signing up for a bulk e-mail provider. Depending on the volume
and frequency of your e-mail campaigns, their servers may have a better
chance of reaching your customers + you'll have less chance of getting your
own servers blacklisted :-)

Nov 1 '06 #3
thanks for your respond. i think we are going to develop it in-house. do
you have any suggestions for bulk faxing? someone told me that windows fax
api is available that we can use. i don't seem to find much reference to it.

"Spam Catcher" wrote:
=?Utf-8?B?UmVkTW9vc2g=?= <Re******@discussions.microsoft.comwrote in
news:67**********************************@microsof t.com:
we have to mass email around 3000 to 10000 emails to clients with
attachments. can i use system.net.mail to accomplish this task from the
server? all my info is in a csv format along with paths to all the
attachments which will be transfered to the server and saved to a temp
location. am i on the rigth path or should i look into something else?
thanks in advance


Yes System.Net.Mail should work.

Just make sure you multi-thread the connections to pump out as many
messages as possible

Also take a look at software designed for bulk e-mail messaging. We use the
following server (works well with .NET):

http://www.quiksoftcorp.com/smtpexpress/

SMTP Express is able to blast messages out REALLY fast.

Lastly, you might want to use a secondary mail server (different IP/subnet)
in case you get blacklisted for spamming (it's a hassle to get off RBLs).
Or consider signing up for a bulk e-mail provider. Depending on the volume
and frequency of your e-mail campaigns, their servers may have a better
chance of reaching your customers + you'll have less chance of getting your
own servers blacklisted :-)

Nov 1 '06 #4
=?Utf-8?B?UmVkTW9vc2g=?= <Re******@discussions.microsoft.comwrote in
news:C6**********************************@microsof t.com:
thanks for your respond. i think we are going to develop it in-house.
do you have any suggestions for bulk faxing? someone told me that
windows fax api is available that we can use. i don't seem to find
much reference to it.
The company I work at took a look at the Windows Fax Service for fax
blasting. I found a couple articles on Google - it didn't seem too hard to
fax via the Windows API. Unfortunately I can't seem to find the articles at
the moment...

However, the major limitation with fax blasting is the # of lines you have.
Depending on your fax throughput ... I would definately look at a service
provider. Faxes ties up phones lines for a long time (average 1 page fax is
~20 - 30s?). A large fax server will require costly hardware. Not to
mention, if you're faxing with standard phone lines your phone bill will be
through the roof!

Fax services are nice to use - typically you transmit a
bmp/tiff/xml/doc/text/etc via a webservice, the fax service then sends out
the message on your behalf.

Nov 1 '06 #5

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

Similar topics

4
by: Trond A. S. Andersen | last post by:
Hi, all! I'm trying to use the System.Web.Mail. "package" combinded with System.Web.Mail.SmtpMail in order to send MS Excel spreadsheets attached to mail messages. However, sending one single...
3
by: Phil Mc | last post by:
Hi has anyone come accross the problem.... with referance to System.Web.Mail.MailMessage and System.Web.Mail.SmtpMail THIS WORKS FINE mail=new MailMessage(); mail.From =...
5
by: martin | last post by:
Hi, I have created a class that is totally seperate from my web application. However this class is used extensivly by the web application for stuff like data access. I wish to add a function to...
3
by: pmud | last post by:
Hi, I have ab ASP.Net Application in which I need to send e-mail on button click. Even though my C# code for that is correct.I am getting the following error:: I think the following error can be...
1
by: Eric Sheu | last post by:
Greetings, I have been searching the web like mad for a solution to my SMTP problem. I am using Windows Server 2003 and ASP.NET 2.0 w/ C# to send out e-mails from a web site I have created to...
2
by: Ryan | last post by:
Hi, I receive an access denied error (see below) when attempting to send an email with BodyFormat=MailFormat.Html from an asp.net page. Exactly the same code works fine in a console...
1
by: theWizard1 | last post by:
The following sends my email, but the attachment is empty. The attachment should contain the data that is in the string that was created from the xmlReader. I have a stored procedure written...
2
by: clevrmnkey | last post by:
I've had nothing but trouble from the System.Net.Mail objects, but I finally need to make them work, and I can't for the life of me see what I'm doing wrong. I pared back my mail transaction to...
10
by: Frank | last post by:
Hi, I am hoping to find out the differences between the System.Net.Mail and System.Web.Mail. Can some nice folks post the differences; or some urls which show the differences? Great Thanks...
2
by: satnamsarai | last post by:
Using System.Net.Mail: Sometimes I get error 'failure sending mail. Unable to write data to the transport connection: An existing connection was forcibly closed by the remote host.' Not sure how...
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: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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
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.