I am using Lotus notes 8.5 c++ api to create a new notes document like email,calendars, tasks,etc. i am not able to put html data in any notes document body.When i insert html data, it shows as Html code. however i can put plain text easily using following api.
LnDocument Mydocument;
Lnstring strval= "xyz";
Lntext Txt;
Txt.Setvalue(strval);
Mydocument.Createitem("Body", Txt, LNITEMFLAGS_SUMMARY, LNITEMOPTION_DELETE_APPEND);
How can i Put html Data in Body field?