Click here to Skip to main content
15,887,485 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi I want to send mail with ASP.NET,
but I want to send email through proxy server,
So how should I edit the code below to send it through a proxy server?

Thanks

MailMessage mail = new MailMessage();
                SmtpClient SmtpServer = new SmtpClient(ConfigurationManager.AppSettings["MailServer"]);
                mail.From = new MailAddress(ConfigurationManager.AppSettings["MailAccount"]);
                mail.To.Add(toAddres);
                mail.CC.Add(new MailAddress(ccAddress));
                mail.Subject = subject;
                mail.Body = content;
                mail.IsBodyHtml = true;
                SmtpServer.Port = ConfigurationManager.AppSettings["MailPort"] == null ? 587 : int.Parse(ConfigurationManager.AppSettings["MailPort"]);
                SmtpServer.Credentials = new System.Net.NetworkCredential(ConfigurationManager.AppSettings["MailUserName"], ConfigurationManager.AppSettings["MailPassword"]);
                SmtpServer.EnableSsl = false;
                
                SmtpServer.Send(mail);
Posted

1 solution

You can create a Method to send the mail through proxy...

C#
MailAddress from = new MailAddress("from@mailserver.com");
MailAddress to = new MailAddress("to@mailserver.com");

MailMessage mm = new MailMessage(from, to);
mm.Subject = "Subject"
mm.Body = "Body";

SmtpClient client = new SmtpClient("proxy.mailserver.com", 8080);
client.Credentials = new System.Net.NetworkCredential("from@mailserver.com", "password");

client.Send(mm);


There is no need to incorporate it into your web.config at all
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900