How to insert Html data in lotus notes document (email,task,etc.) body using C++ api? -


i using lotus notes 8.5 c++ api create new notes document email,calendars, tasks,etc. not able put html data in notes document body.when insert html data, shows html code. can put plain text using following api.

lndocument mydocument; lnstring strval= "xyz"; lntext txt; txt.setvalue(strval); mydocument.createitem("body", txt, lnitemflags_summary, lnitemoption_delete_append);  

how can put html data in body field?

this tutorial has instructions on how create html email

it aimed @ lotusscript shouldn't hard convert c++ api. gist you'll have create notesmimeentity , set text html you've generated.


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -