Hi there,
Does anyone know of a way of putting a CC on a Mapi Message from VB.. i have an idea how i could do it but it involves bodging and fudging the program to make it work.. is there a quicker and easier way?
TIA
Printable View
Hi there,
Does anyone know of a way of putting a CC on a Mapi Message from VB.. i have an idea how i could do it but it involves bodging and fudging the program to make it work.. is there a quicker and easier way?
TIA
Put this inside your codeVB Code:
Dim objOutlookRecip As Outlook.Recipient Set objOutlookRecip = .Recipients.Add("an other person") objOutlookRecip.Type = olCC
Thanks Hack,
works a treat!
You can also use olBCC to send a Blind Copy.