HI all. It's been a while not I've been working on a program that has a simple component that send an email message. I got it to work like this:

MailMessage mailMessage = new MailMessage();
mailMessage.From = "[email protected]";
mailMessage.To = "[email protected]";
mailMessage.Subject = "test"
mailMessage.Body = "test";
SmtpMail.Server = "localhost";
SmtpMail.Send(mailMessage);


However, now that it is time to install the program, I realise that their Internet access operates through a proxy server.

Thus is it possible to send e-mail via a proxy server? This is since the above code is working on my work machine, but not on any of the machines I have to install it on.

Jennifer.