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

google app engine - 403 Forbidden POST - Flask WTForms -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -

how to run a query SQL in node.js mysql -