I’m looking for a way to create a new memo in Outlook
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: 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!!