| | Awarded by Microsoft since 2005: |  |
| | VBOffice Info | | Visitors | 1392843 | | Impressions | 5103606 |
| |
|
| |
| Author: Michael Bauer | Homepage | | Date: 17.11.2009 | Accessed: 14870 | | | | Description
This example sends a copy of each outgoing email to a certain address. The address is added as BCC, so the recipient doesn't see that. |
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim R As Outlook.Recipient
Dim Address$
Address = "abc@domain.com"
Set R = Item.Recipients.Add(Address)
R.Type = olBCC
R.Resolve
End Sub
|
| | |
| | |  | ReplyAll alerts you before unintentionally replying all, or if you are a confidential BCC recipient of the ... [more] |
| | |  | Access the master category list in the blink of an eye, share your categories in a network, get a reminder service, and ... [more] |
| | |  | SAM automatically sets the sender, signature, and folder for sent items, for instance based on the recipient ... [more] |
| | |  | OLKeeper reliably prevents users from closing their Outlook window and thus possibly missing reminders or ... [more] |
| |
|