vote up 0 vote down star

Microsoft Word has a "send as attachment" function which creates a new message in Outlook with the document attached.

I would like to replace Outlook with a custom mail agent, but I do not know how to achieve this. Now my mail agent is simply a program that runs, and takes a file name as parameter.

As far as I know, "send as attachment" is using some DLL/API called MAPI. I would need to change my app so that it does not simply accept file name arguments, but can receive MAPI(?) calls MS Word uses when "sending as attachment".

Further, I need to change the default mail agent by creating my own MAPI32.dll stub which simply redirects to my app.

I'd appreciate if anyone had more info on how this could be achieved!

flag
2  
This question should go to superuser.com. – Fredrik Mörk Sep 22 at 7:56
Word uses the default email application on your system. You would have to change that. However, questions about general usage of software should be asked on superuser.com – divo Sep 22 at 8:38
1  
Sorry, I think I phrased the question poorly. I am not looking for replacing the default email application, but for information on how to create a "mapi compliant" application, so that later my mail agent can replace i.e. outlook. – goorj Sep 22 at 19:49

2 Answers

vote up 0 vote down

OK, to answer my own question. I need to build a DLL with "MAPISendDocuments" and/or "MAPISendMail" functions defined.

This DLL can have any name, and is referenced in the registry at HKLM/Software/Clients/Mail/MyMailApp/DLLPath.

Found examples using Delphi...

link|flag
vote up 0 vote down

I need to achieve the same solution, did you manage to code your own DLL? If so, any chance of posting the code?

link|flag
I have not had time yet. The interface is well documented, but as I am not familiar with WIN/DLL coding, I need to spend some time getting to know the basics. Someone with more knowledge could probable create a stub DLL in 2 minutes! – goorj Nov 13 at 10:01

Your Answer

Get an OpenID
or

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