Hi Dieter,
The signatures are local to the user and will work only in foreground mode....
You will need to upload the signature from the local file....
DATA: OS_USER TYPE STRING .
CALL METHOD CL_GUI_FRONTEND_SERVICES=>GET_USER_NAME
CHANGING
USER_NAME = OS_USER
EXCEPTIONS
CNTL_ERROR = 1
ERROR_NO_GUI = 2
NOT_SUPPORTED_BY_GUI = 3
OTHERS = 4.
Filename =
"C:\Documents and Settings\" + OS_USER + "\Application Data\Microsoft\Signatures\" + outlook_user + "." + file_ext.
Read this file and add it to the body text.
Regards