Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Bulk Email problem
Message
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 2.0
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01373136
Message ID:
01373170
Views:
22
>Hi All, I'm trying to send a monthly newsletter by email to a local club I'm a member of, we are about fifty in number, in testing I decided to send it to myself fifty times, the problem I'm having is the mail server chokes on iteration 25 - the error being: Too many messages, I've tried inserting a Sleep(1000) but it doesn't help- any ideas ? this is the main guts of the prog
>
>
>
>for (i = 1; i < 1000; i++)
>                {
>
>                    client = new SmtpClient();
>                    client.Host = MailServer;
>                    client.Timeout = 50000;
>
>                    from = new MailAddress(MailSender);
>                    to = new MailAddress(MailRecipient);
>
>                    message = new MailMessage(from, to);
>
>                    
>
>
>                    StringBuilder messagetext = new StringBuilder();
>
>                    messagetext.AppendFormat("This is message # {0}", i);
>
>
>                    message = new MailMessage(from, to);
>
>                    message.Subject = "Testing bulk email";
>                    
>                    message.Body = messagetext.ToString();
>
>                    client.Send(message);
>               }
>
If you were really sending to different recipients you could just loop through the list adding each one using 'MailMessage.To.Add(emailaddress) and perform just one send at the end.
HTH,
Viv
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform