Whenever I click on a mailto: link on a website, an email message comes up in my default email program. This might be outlook, eudora, outlook express, netscape, or whatever I have installed. Some mailto links even have the subject filled in by default.
Is there anyway for me to access this sort of functionality from C#?
I need to be able to compose an email message with the following already filled in:
1) To
2) Subject
3) Body
4) File attachment
It will then be up to the user to modify and send the email once it is displayed. I also need to be able to compose and send the email without the user seeing any dialogs. It is mandatory that the email message be listed in the sent items folder for that user.
If I am not mistaken, using the System.Web.Mail namespace is out because the sent message would not appear in the sent items folder for the user's email program.
Is there a way to do this without resorting to a specific reference to the Outlook COM API?
Is there anyway for me to access this sort of functionality from C#?
I need to be able to compose an email message with the following already filled in:
1) To
2) Subject
3) Body
4) File attachment
It will then be up to the user to modify and send the email once it is displayed. I also need to be able to compose and send the email without the user seeing any dialogs. It is mandatory that the email message be listed in the sent items folder for that user.
If I am not mistaken, using the System.Web.Mail namespace is out because the sent message would not appear in the sent items folder for the user's email program.
Is there a way to do this without resorting to a specific reference to the Outlook COM API?