Thread: Outlook and bcc
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
alvin Kuiper alvin Kuiper is offline
external usenet poster
 
Posts: 175
Default Outlook and bcc

Ok
But what i want is to send the mail to someone
and send the same mail to another using Bcc
To test it i just use my mail acount
And i have try this

addee = "
With objMail
.To = addee
.BCC = "
.Subject = "Booking"
.HTMLBody = msg
'On Error GoTo cancelvalgt
.Send
End With

So how can i send the same mail using Bcc
To another person.

Alvin

"Joel" skrev:

You should only get one e-mail, not two. BCC just means other people on the
distruibution list won't see your name on the distriobution. It doesn't
change the number of copies of the e-mail that is sent.

"alvin Kuiper" wrote:

Hi!
I have try this
After my mail setup last line:
msg = msg & "</table"
then i try this
Set objRecip = objMail.Recipients.Add("Mymail")
objRecip.Resolve
If objRecip.Resolved Then
objRecip.Type = olBCC ' 3
End If
addee = "Mymail"
With objMail
.To = addee
.Subject = "Booking"
.HTMLBody = msg
On Error GoTo cancelvalgt
.Send
End With

I get my mail, with addee
But not the Bcc mail
What is wrong here?

Alvin