Sending mail throught http proxy?

I understand that you want to use the browsers default settings, I would also like an answer for that Meanwhile, you could do it manually 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).

I understand that you want to use the browsers default settings, I would also like an answer for that. Meanwhile, you could do it manually. MailAddress from = new MailAddress("[email protected]"); 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).

Http Proxies control http traffic, they rarely have anything to do with SMTP at all. I've never heard of proxying SMTP before after all SMTP itself is intrinsically supports a chain of "proxies" to the destination SMTP server.

You could proxy SMTP to say a spam filter. Where the spam filter would evaluate the email and forward it on to the SMTP server. – Chuck Conway May 10 '09 at 7:14 @Charles: Like I said in the answer STMP is intrinsically a series of "proxies" to the destination.

A spam filter is simply another SMTP server in the chain. – AnthonyWJones May 10 '09 at 8:14 I believe it is possible. Clever components implemented one: clevercomponents.Com/products/inetsuitenet/smtpclientnet.

Asp but it doesn't seem worth buying it – Salar May 10 '09 at 10:06.

If the only access you have to the internet is through HTTP, then pretty much the only way you'll be able to do this is by setting up a VPS (or equiv) with SSH on port 443 and using corkscrew (or putty) to tunnel ssh through. From there it is a simple matter to forward smtp traffic over your ssh tunnel. Be aware that you may be violating the companies computing policy if you do this.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions