How to append Signature backend?

Hi,I am creating an email through COM.

Everything works so far.

(I have to create a new RichTextItem called Body instead of using the existing one, but thats a different story).

Now, I want to append the users signature to the email which is created.

I tried the following.

I was able to get the signature path through the CalendarProfile document.

But I cannot append the signature, like happens on a normal mail.

I tried this:

Call DesignField.APPENDTEXT(domSignaturePathText)

'This appends the text of the path instead of the file

or

Dim notesEmbeddedObject As Object '(notesEmbeddedObject)

Set notesEmbeddedObject = DesignField.EMBEDOBJECT(EMBED_OBJECT, “”, domSignaturePathText, “”)

‘This appends it as an embedded object (which looks like an attachment’

or

'Dim notesEmbeddedObject As Object '(notesEmbeddedObject)

'Set notesEmbeddedObject = DesignField.EMBEDOBJECT(EMBED_ATTACHMENT, “”, domSignaturePathText, “”)

'This Embeds it as an attachment which is not what I want either.

What I want is like, the same as when a create a normal email, it has my signature on it - how to do this with LotusScript backend classes (as I am using COM)