Send Mail, Max limit of TO, CC, BCC
-
Hi, I am using System.Net.Mail namespace for sending mail from my application. (ASP.Net/ C#.Net 2.0) MailMessage myMailMsg = new MailMessage(); would like to add the recepients (MailAddress) here in TO or CC or BCC. Question: 1. What would be the max no of MailAddresses can be added in the MailMessage object's To, CC & BCC? My expected no users will be around 2000 to 3000. 2. Is it good approah to call the Send() method of SmtpClient Class only one time? Can you pls suggest the best practice on this? Thanks Jeyakumar
Jey
-
Hi, I am using System.Net.Mail namespace for sending mail from my application. (ASP.Net/ C#.Net 2.0) MailMessage myMailMsg = new MailMessage(); would like to add the recepients (MailAddress) here in TO or CC or BCC. Question: 1. What would be the max no of MailAddresses can be added in the MailMessage object's To, CC & BCC? My expected no users will be around 2000 to 3000. 2. Is it good approah to call the Send() method of SmtpClient Class only one time? Can you pls suggest the best practice on this? Thanks Jeyakumar
Jey
-
If you try and send 2000-3000 e-mails using .netmail then surely it will just hang the application. How big are the contents of the e-mail?
A couple of words and a bitmap with the word 'ciallis' in it.
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.
-
Hi, I am using System.Net.Mail namespace for sending mail from my application. (ASP.Net/ C#.Net 2.0) MailMessage myMailMsg = new MailMessage(); would like to add the recepients (MailAddress) here in TO or CC or BCC. Question: 1. What would be the max no of MailAddresses can be added in the MailMessage object's To, CC & BCC? My expected no users will be around 2000 to 3000. 2. Is it good approah to call the Send() method of SmtpClient Class only one time? Can you pls suggest the best practice on this? Thanks Jeyakumar
Jey
Jay_se wrote:
What would be the max no of MailAddresses can be added in the MailMessage object's To, CC & BCC? My expected no users will be around 2000 to 3000.
Well, I believe the maximum number has nothing to do with the .Net framework but the Mail Server capacity.
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
Hi, I am using System.Net.Mail namespace for sending mail from my application. (ASP.Net/ C#.Net 2.0) MailMessage myMailMsg = new MailMessage(); would like to add the recepients (MailAddress) here in TO or CC or BCC. Question: 1. What would be the max no of MailAddresses can be added in the MailMessage object's To, CC & BCC? My expected no users will be around 2000 to 3000. 2. Is it good approah to call the Send() method of SmtpClient Class only one time? Can you pls suggest the best practice on this? Thanks Jeyakumar
Jey
-
A couple of words and a bitmap with the word 'ciallis' in it.
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.
-
Max limit of TO, CC,BCC is 50 for each, taht will make 150 for the 3
The Developer - CEH
-
Jay_se wrote:
What would be the max no of MailAddresses can be added in the MailMessage object's To, CC & BCC? My expected no users will be around 2000 to 3000.
Well, I believe the maximum number has nothing to do with the .Net framework but the Mail Server capacity.
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
If you try and send 2000-3000 e-mails using .netmail then surely it will just hang the application. How big are the contents of the e-mail?
-
A couple of words and a bitmap with the word 'ciallis' in it.
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.