When i tried to send mail from Windows service, i got the exception with message "Failure sending mail".
The same code works in the windows forms application.
The windows service is running in local system account?
Kindly help me in resolving this issue.
Here is the code that sends the email:
SmtpClient smtp = new SmtpClient("XXXX", 25);
MailAddress from = new MailAddress("admdept@test.com","DRMUpdater");
MailAddress to = new MailAddress("drm_dro3@test.com","DRM");
MailMessage email = new MailMessage(from, to);
email.Subject = "DRMShell Updation Failed for user: " + userName;
email.Body = String.Empty;
smtp.Send(email);