hi i am having lotus notes 8.5 client in my development machine (it is trail edition downloaded from ibm) my client is having 6.5 , i am able to send mail from my development box with out any problem , but when i tried in the client machine it gives me error class not found. upon searching google i find one thing but that is for 5 and 6.x domino clients, it states that registering one nlsxbe.dll will solve the problem, so here is my question will the same solution is workable for 6.5 and 8.5?
Dim ns As New NotesSession,Dim db As NotesDatabase, Dim doc As NotesDocument If Not (ns) Is Nothing Then ns.Initialize("password") db = ns.GetDatabase("zzzMDU/SRV/abcd//yyy.com", "names.nsf", False) If Not db Is Nothing Then doc = db.CreateDocument doc.ReplaceItemValue("Form", "Memo") doc.ReplaceItemValue("SendTo", "[email protected]") doc.ReplaceItemValue("Subject", "test mail") Dim rt As NotesRichTextItem rt = doc.CreateRichTextItem("Body") rt.AppendText("test message") doc.Send(False) rt = Nothing doc = Nothing End If db = Nothing ns = Nothing End If