VictorFRodriguez
Programmer
There is a code in which you can invoke outlook express to send emails from VFP
But, how can I do to send emails in HTML format//?
The code is this,,, it is not mine, I copied from other person.
CREATEOBJECT("Outlook.Application"
objNameSpace = objOutlook.GetNameSpace("MAPI"
objNameSpace.Logon(,,.T.,.F.)
objItem = objOutlook.CreateItem(0)
objItem.Subject = "ASUNTO....."
objItem.Body = "Body text message"
objItem.Importance = 2 && importancia
xDocument='C:\archivo.xls' && Name of the file to attached
objItem.attachments.ADD(ALLTRIM(xDocument),1,1,""
&& attached document
I will appreciate your help
Victor F. Rodriguez
Santo Domingo, Dominican Republic
But, how can I do to send emails in HTML format//?
The code is this,,, it is not mine, I copied from other person.
CREATEOBJECT("Outlook.Application"
objNameSpace = objOutlook.GetNameSpace("MAPI"
objNameSpace.Logon(,,.T.,.F.)
objItem = objOutlook.CreateItem(0)
objItem.Subject = "ASUNTO....."
objItem.Body = "Body text message"
objItem.Importance = 2 && importancia
xDocument='C:\archivo.xls' && Name of the file to attached
objItem.attachments.ADD(ALLTRIM(xDocument),1,1,""
I will appreciate your help
Victor F. Rodriguez
Santo Domingo, Dominican Republic