Thanks Steve, appreciate the feedback! Once you have the image file on the server you can get hold of the file from the path and then embed it into a Rich Text field of your notes document, e.g. var rtitem:NotesRichTextItem = doc.createRichTextItem("Body"); rtitem.embedObject(NotesEmbeddedObject.EMBED_ATTACHMENT, "", "c:\temp\webcam.png", null); doc.save();