Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Notes Email Document CC Question

Status
Not open for further replies.

BrooksR

Programmer
Feb 24, 2001
98
US
I'm an Access developer, new to Notes. I have a requirement to add CCs (carbon copies) to an existing application written in VB Script:

Dim oDoc
Set oDoc = oDB.CreateDocument
oDoc.Subject = "The subject"
oDoc.SendTo = "John Smith"
oDoc.Body = "the body ..."
oDoc.From = "Sue Johnes"
oDoc.Send False

How do I add 3 people to receive CCs of this email? What would be the property name and how would I send it 3 recipient names? (I don't have any docs and the notes32.tlb doesn't even show a Subject, SendTo, Body or From properties.)

Thanks,
Brooks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top