Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
please post code and/or complete error message – mxmissile May 24 '10 at 7:24
does your smtp requires TLS authentication? – Sunil Agarwal Jun 14 '11 at 19:00

1 Answer

Is it possible that your SMTP server needs authentication? And it might be ok with your normal account, but the Local System fails authentication.

You can try this either by setting the service to run under your account or by specifying specific credentials during the connection. You can change the credentials by setting the UseDefaultCredentials property to false and creating a new NetworkCredential in the property Credentials.

share|improve this answer
Hi mxmissile, Please find the code i am using to send mail: 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); . – user348725 May 25 '10 at 5:52
Hi ho, As the windows service is performing administrator related activities. I can change the service account. But i will change the account for testing. But is it possible to change the account at runtime..? – user348725 May 25 '10 at 5:54
Not exactly sure what you mean but if you use the SmtpClient.Credentials property as I mention above you should be able to supply any credentials you want at runtime. And otherwise you could create a new account, give it admin rights on that box and make sure that it's authorised to send emails. – ho1 May 25 '10 at 7:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.