I have a service that is used to automate an e-mail system, it also saves a copy of the .eml file in a local folder.
Using the Outlook Interop dll works fine for interactive applications, however we need to make it a service, which is non-interactive, and making the service interactive would render a lot of security issues.
tl;dr Is there any way to save the .eml file in a folder using a non-interactive Windows Service?
PS: The e-mail is a System.Net.Mail.MailMessage object.