Home All Groups Group Topic Archive Search About
Author
31 Oct 2006 6:40 PM
RedMoosh
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

Author
31 Oct 2006 7:38 PM
rowe_newsgroups
> 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:
Show quoteHide quote
> 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
Author
1 Nov 2006 2:19 PM
Spam Catcher
=?Utf-8?B?UmVkTW9vc2g=?= <RedMo***@discussions.microsoft.com> wrote in
news:67EFCFBC-602E-440F-AE5B-58166E6683B7@microsoft.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 :-)
Author
1 Nov 2006 3:12 PM
RedMoosh
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.

Show quoteHide quote
"Spam Catcher" wrote:

> =?Utf-8?B?UmVkTW9vc2g=?= <RedMo***@discussions.microsoft.com> wrote in
> news:67EFCFBC-602E-440F-AE5B-58166E6683B7@microsoft.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 :-)
>
>
Author
1 Nov 2006 4:18 PM
Spam Catcher
=?Utf-8?B?UmVkTW9vc2g=?= <RedMo***@discussions.microsoft.com> wrote in
news:C6298B7B-5689-4FAF-9707-85D9C09F3B28@microsoft.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.