Search code examples
c#asp.netmailmessagebcc

sending mails using MailMessage class - Limitations OF BCC and CC counts?


i have a list (1,000,000 emails addresses) of my customers and i want to send them an specific email (all of those emails are the same) using MailMessage calss.
is there any limitation(s) about Ensemble Emails using this class or global rules about this issue for spammers?
also is there any limitation about bcc and cc count ?
can i send one email with one million bcc addresses?

thanks in advance


Solution

  • you are deeply wrong in your approach:

    • do not bother this 1.000.000 customers with same not customized emails, surely not all of them are interested in the same service or product (btw I doubt they are really all your customers, if you have so many customers you had an IT department and people who knew the answer);
    • bcc is not to be used in general except rare cases;
    • if you put 1.000.000 email addresses in the bcc or cc field, it will probably explode in the SMTP server and even if not it will take ages to send and deliver and you will have more metadata than the real email content.
    • just do not do it, if you want to do smart marketing or ninja/viral marketing select a subset of those customers aggregating by business or by other factors (location, needs...) and contact the smaller subset with a real offer interesting only for those.