- Code: Select all Expand view
DEFINE MAIL oMail ;
SUBJECT cSubj ;
TEXT cText ;
FILES cSndFile, cSndFile ;
FROM USER ;
TO MailTo
ACTIVATE MAIL oMail
However, I want to start the email ( in Outlook via MAPI ) as HTML.
I added the following:
LOCAL cType := 'txt/html'
Then I added the following to the call above:
TYPE cType
In the documentation, TYPE is a valid addition. However, when I add this in, then I get the message "The object cannot be found".
I have a ( nagging ) client who wants to add a signature and graphic to his outgoing emails, and that requires HTML.
Any thoughts on this ?