Question : Seeking Hosting provider, preferably Canada

I need solid hosting provider recommendations in Canada.  Here's what we need to do:

Currently own 5 servers, running Windows 2k3
Srv1: Domain Controller + Sql 2k5
Srv 2: DC and Mail server (3rd party, not exchange)
Srv 3: DB (mysql)
Srv 4: Load balanced web server #1
Srv 5: Load balanced web server #2
(web servers are currently behind a load balancer we own -- will need an option to load balance)

We're not moving our physical servers from current location, but looking for hosted or leased equipment that we can configure as above.

Any suggestions or recommendations?  Preferably with links/contact info, etc.  

Thanks

Answer : Seeking Hosting provider, preferably Canada

1 - Make sure that in your "emails table" you have a "flag" column that indicate if you have sent an email or not.
2 - Retreive the list of emails that is not already flagged.
3 - Send your email using that kind of code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
MailMessage email = new MailMessage(fromEmail, ToEmail);
email.Subject = subject;
email.CC.Add(toEmailCC);
email.IsBodyHtml = true;
email.Body = body; // your body content in HTML
SmtpClient sMail = new SmtpClient("YourSmtpServer");
sMail.DeliveryMethod = SmtpDeliveryMethod.Network;
sMail.Credentials = new NetworkCredential("YourUserIfNeeded", "YourPasswordIfNeeded");
Attachment item = new Attachment(filename); //if any
email.Attachments.Add(item);
sMail.Send(email);
Random Solutions  
 
programming4us programming4us