My appologies for not clairifiying. I'm doing this in C++ not C#. I thought I put this on the C++ forum only. If it is not, then it needs to be moved. I don't know how to do that.
Using VS 2008, MFC Programming.
I have a dialog app that has several menu items. I want a menu item to invoke the client's default mail client and email me. I want this so that the client can email me bugs or enhancments by using this menu item.
Thanks
Loading
ShankeyPosted Sep 1, 2010, 4:52 AM
You can write following javascript on click of that menu item and pass your email address. But dont forget to mark my answer as accepted if it helped you
function sendMails(mailaddress) {
var mailId = 'mailto:' + mailaddress;
window.open(mailId);
}