Create new Outlook memo from Notes

I’m looking for a way to create a new memo in Outlook :frowning: populated with a SendTo address from a Notes document. MAPI, perhaps? If it’s too difficult, I won’t bother, but if you can point me in the right direction…

(Switch back to Notes mail would be the easy answer, but I don’t think the company will go for that.)

Subject: Create new Outlook memo from Notes

Use mailto in URL command:

http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/5381f3227a021b5c85257181006447ea?OpenDocument

Regards

Litty Joseph

Subject: RE: Create new Outlook memo from Notes

Here’s something I’m currently testing. Still trying to figure out if there is a way to replace carriage returns / line feeds so that I can have a well formatted body with paragraphs, etc…

FIELD subjvar := @ReplaceSubstring(CompanyName;

" “:”,“:”?“:”.“:”!“:”:“:”;“:”/“:”-“:”(“:”)“:”&";

“%20”:“%2C”:“%3F”:“%2E”:“%21”:“%3A”:“%3B”:“%2F”:“%2D”:“%28”:“%29”:“%26”);

FIELD bodyvar := @ReplaceSubstring(ContactNotesHistory;

" “:”,“:”?“:”.“:”!“:”:“:”;“:”/“:”-“:”(“:”)“:”&";

“%20”:“%2C”:“%3F”:“%2E”:“%21”:“%3A”:“%3B”:“%2F”:“%2D”:“%28”:“%29”:“%26”);

@Command([Execute]; “OUTLOOK”; “-c IPM.Note /m mailto:”+Email+“?subject=”+subjvar+“&body=”+bodyvar)

Subject: RE: Create new Outlook memo from Notes

Perfect! Thanks!!