1
I am starting to send emails in my application, so I am trying to use the package of Netoffice to send and receive emails. What I am trying to do is: From the account logged in to the local pc with the Outlook application, send an email with a preset message in my application.
At first I’m having problems... I’m following a example of Netoffice where it gives me errors, where when making the import of the package (using NetOffice;
), gives errors to start Outlook (Outlook.Application outlookApplication = new Outlook.Application();
).
Another small question: There are Packages or better alternatives to Netoffice?
What’s the problem? You can enter the code?
– Matheus Bessa
The only code I put in was to start outlook (
Outlook.Application outlookApplication = new Outlook.Application();
)– CesarMiguel