I have a scheduled Lotus Script agent importing a zip file which is in a folder under the Notes data directory. The notes server is running on Linux
Can I use EmbedObject in case like this:
//---------------
’ File_Full_Net_Path = “/v/images/b1.jpg”
If fFileExists(File_Full_Net_Path) Then
Set rtitem = New NotesRichTextItem( doc, “file” )
Set object = rtitem.EmbedObject _
( EMBED_ATTACHMENT, “”, File_Full_Net_Path)
Call doc.Save( True, True )
End If
//----------------
Can anyone offer any pointers?
Thank you!