vote up 1 vote down star

I am trying to use the System.Net.Mail.MailMessage class in C# to create an email that is sent to a list of email addresses all via BCC. I do not want to include a TO address, but it seems that I must because I get an exception if I use an empty string for the "TO" address in the MailMessage constructor. The error states that "TO" must not be the empty string. Surely it is possible to send an email using only BCC as this is not a limitation of SMTP. Is there a way around this?

ArgumentException The parameter 'addresses' cannot be an empty string. Parameter name: addresses

flag

25% accept rate
I'd complain to MS about this. It doesn't help you in the current situation though. – tim Nov 19 '08 at 16:12
Complaining always helps. It gives a warm feeling of hate. – bzlm Mar 17 at 7:58

5 Answers

vote up 0 vote down

Just don't call the Add-method on the To-property.

link|flag
vote up 1 vote down

I think if you comment out the whole emailMessage.To.Add(sendTo); line , it will send the email with To field empty.

link|flag
vote up 0 vote down

It doesn't even need to be a real e-mail address, I typically use Mailer@CompanyName.com for TO, and NoReply@CompanyName for FROM.

link|flag
vote up 5 vote down

Do the same thing you do for internal mail blasts where you don't want people to reply-to-all all the time.

Send it to yourself (or a dummy account), then add your BCC list.

link|flag
vote up 1 vote down

You have to include a TO address. Just send it to a "junk" email address that you don't mind getting mail on.

link|flag
I don't think you have to include a To-address. – Tommy Carlier Jun 25 at 19:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.