Hi
this error might be due to insufficient privileges for you
try this method
C#
SmtpClient client = new SmtpClient(smtp_server);
client.UseDefaultCredentials = false;
client.DeliveryMethod = SmtpDeliveryMethod.Network;
client.Credentials = new System.Net.NetworkCredential("usename", "password");
client.Send(emailMsg);
VB
Dim client As SmtpClient = New SmtpClient(smtp_server)
client.UseDefaultCredentials = false
client.DeliveryMethod = SmtpDeliveryMethod.Network
client.Credentials = New System.Net.NetworkCredential("usename", "password")
client.Send(emailMsg)
hope this will help for you
Hope this will help you....
" If people criticize you, hurt you, or shout at you,Don't be bothered. Just remember, In every game, audience make the noise, not the players "