views:

18

answers:

1

i have one application for sending more then 1 million mail from that application.

so sending mail may be through third party api or else

how to send bulk mail through c#.net with asp.net?

A: 

You can use the classes in the System.Net.Mail namespace to send email from C#. Specifically, the MailMessage and the SmtpClient classes should be useful.

Also, remember, sending UCE is evil, and in some locations, could be illegal. Don't do it.

Mark