Calling Outlook Express
-
Hi guys, there is an easy way from C++ to make the same as when in a web page you click on a button an a New Mail (from outlook express) appears with a preselected adress on it? Do you know an example of this? Thanks and Merry Christmas.
doctorpi wrote:
Hi guys, there is an easy way from C++ to make the same as when in a web page you click on a button an a New Mail (from outlook express) appears with a preselected adress on it?
ShellExecute(hWnd, "open", "mailto:doctor@pi.com", ...);
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
-
doctorpi wrote:
Hi guys, there is an easy way from C++ to make the same as when in a web page you click on a button an a New Mail (from outlook express) appears with a preselected adress on it?
ShellExecute(hWnd, "open", "mailto:doctor@pi.com", ...);
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
-
doctorpi wrote:
mailto doesn't admit attachments?
It's not required per the protocol's standard, but some vendors have implemented it. If you must have it, you'll need to implement a MAPI solution where you have total control over everything. See these past discussions: http://www.codeproject.com/script/comments/forums.asp?msg=1139182&forumid=1647&XtraIDs=1647&stype=1#xx1139182xx[^] http://www.codeproject.com/script/comments/forums.asp?msg=1176661&forumid=1647&XtraIDs=1647&stype=1#xx1176661xx[^] http://www.codeproject.com/script/comments/forums.asp?msg=1437914&forumid=1647&XtraIDs=1647&stype=1#xx1437914xx[^] http://www.codeproject.com/script/comments/forums.asp?msg=1032018&forumid=1647&XtraIDs=1647&stype=1#xx1032018xx[^] http://www.codeproject.com/script/comments/forums.asp?msg=1012524&forumid=1647&XtraIDs=1647&stype=1#xx1012524xx[^]