This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
Yes its possible. Just got mine fixed. The part that made it work was erasing the old signature ....
Sub update_email_signature
'----------------------------------------------------------------
'Open users mail database
Set Maildb = New NotesDatabase( "", "" )
Call Maildb.OpenMail
If Not Maildb.IsOpen Then
Messagebox"Could not open mail database.", 48, "Error"
Exit Sub
End If
Print "Sig file creation complete - enabling sig file for mail..."
Print "Getting handle to Mail Preferences..."
Set mailprof = maildb.GetProfileDocument("CalendarProfile")
'// Remove any existing signature field from CalendarProfile
Dim itmSig As NotesItem
Set itmSig = mailprof.GetFirstItem("Signature_Rich")
If Not itmSig Is Nothing Then mailprof.RemoveItem("Signature_Rich")