Use Bcc

A

alvin Kuiper

Hi
I have this:
is there a way to add a bcc adress

With Destwb
.SaveAs TempFilePath & TempFileName & FileExtStr, _
FileFormat:=FileFormatNum
'On Error Resume Next

' .SendMail "[email protected]"
Application.DisplayAlerts = False
ActiveWorkbook.SendMail Recipients:="[email protected]", _
Subject:=strSubject


On Error GoTo 0
.Close SaveChanges:=False
End With

Alvin
 
A

alvin Kuiper

Hi
I use one off Ron's scripts
but can't find out sending to a bcc adress

Alvin


"royUK" skrev:
 
R

Ron de Bruin

On top of every SendMail example page you can read this

With SendMail it is not possible to :

1) Send text in the Body of the mail
2) Use the CC or BCC field
3) Attach other files

Use the Outlook object model examples from my site



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
 
Top