Tagged Questions
2
votes
5answers
3k views
Sending Mail via SMTP in C# using BCC without TO
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 ...
1
vote
0answers
154 views
Block Check Character
Hello
Faced with this problem
is
new byte [] {0x04, 0x30, 0x02, 0x44, 0x03}
Need to define BCc
How can I do?
Thank you in advance
I try this function, but it is not working
private static byte ...
1
vote
3answers
811 views
Why is the calculated checksum not matching the BCC sent over the serial port?
I've got a little application written in C# that listens on a SerialPort for information to come in. The information comes in as: STX + data + ETX + BCC. We then calculate the BCC of the ...
0
votes
2answers
168 views
Last recipient set using office interop always ends up in TO field in outlook2010 even if the type is BCC or CC
I am having problems setting the BCC field in Outlook 2010.
This is my situation (using Microsoft.Office.Interop.Outlook):
string bcc = "example@example.com";
Recipient recipient = ...
-1
votes
3answers
135 views
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 ...