The Back Story A little while back, I was asked if we could implement a mass email solution in house so that we would have better control over sensitive information. I proposed a two step plan: Develop a prototype in Excel/VBA/CDO for user familiarity, then phase a .Net/SQL server solution [...] read more
I thought that I had this under control before. But for some reason during our last email marketing promo, I start receiving from our mass email client (built in house).. The message could not be sent to the SMTP server. The transport error code is 0x800ccc67. The server repsonse was [...] read more
I am trying to send 4 emails using my isp. (NOT JUNK MAIL, i send it to my address) I send them one by one from a loop (as I build them). every message is 50kb-80kb MailMessage mailmessage = new MailMessage(); mailmessage.To.Add(to); mailmessage.From = new MailAddress(from, "From"); mailmessage.IsBodyHtml = true; [...] read more