Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Outlook automation: send cc: and display dialog
Message
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Outlook automation: send cc: and display dialog
Miscellaneous
Thread ID:
00299892
Message ID:
00299892
Views:
77
Hi,

I am doing my 1st automation with outlook. I am using an example for "foxforum" (i Think) and it works real well. However, I can't find the property for doing a cc: recipient. I would also like to bring up the outlook dialog instead of just the send.

Any help would be appreciated.

Kevin

*******************************************
oOutLookObject = CreateObject("Outlook.Application")
oEmailItem = oOutLookObject.CreateItem(MAILITEM)
WITH oEmailItem
.To = m.sendto && ; separated list.
*.ccTo =m.ccTo && also tried .cc
.Subject = m.jcsubject
.Importance = IMPORTANCEMORMAL
.Body = m.jcmessage
IF NOT EMPTY(lcattach1)
.Attachments.Add(lcattach1)
ENDIF
.Send && would like to bring dialog up instead of blind send
ENDWITH

Release oEmailItem
Release oOutLookObject
Kevin Emmrich
www.jkt9000.com
Next
Reply
Map
View

Click here to load this message in the networking platform