SteveMacPSU
Programmer
I have an app where a user can type in a brief description of an activity in a table and then email that information to an outlook user. Here is what is in the record(a memo field).....
Hi,
Does this way work any better?
Please let me know, would you?
Dave & Steve
This is what gets into the body of the email...
Hi,Does this way work any better
Does anyone have any insight into why this text is being cut-off when it is sent to the body of the email.
This is how I format the email from the vfp9 record data:
cDes = TRIM(ACTIVITY.DESCRIPT)
cMail= "mailto:" + TRIM(ACTIVITY.TMAIL) + "&SUBJECT=SAM *** Request No " + TRIM(ACTIVITY.REQUESTNO) + "&Body= " + cDes
ShellExecute(0,"open",cMail,"","",1)
It appears to have a problem with ? and also with & and some other special characters.
Hi,
Does this way work any better?
Please let me know, would you?
Dave & Steve
This is what gets into the body of the email...
Hi,Does this way work any better
Does anyone have any insight into why this text is being cut-off when it is sent to the body of the email.
This is how I format the email from the vfp9 record data:
cDes = TRIM(ACTIVITY.DESCRIPT)
cMail= "mailto:" + TRIM(ACTIVITY.TMAIL) + "&SUBJECT=SAM *** Request No " + TRIM(ACTIVITY.REQUESTNO) + "&Body= " + cDes
ShellExecute(0,"open",cMail,"","",1)
It appears to have a problem with ? and also with & and some other special characters.