Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim objRecip As Recipient
Dim strMsg As String
Dim res As Integer
Dim strBcc As String
On Error Resume Next
' #### USER OPTIONS ####
' address for Bcc -- must be SMTP address or resolvable
' to a name in the address book
strBcc = "email@email.co.uk"
If InStr(Item.SendUsingAccount.SmtpAddress, "email.co.uk") <> 0 Then
Set objRecip = Item.Recipients.Add(strBcc)
objRecip.Type = olBCC
If Not objRecip.Resolve Then
strMsg = "Could not resolve the Bcc recipient. " & _
"Do you want still to send the message?"
res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _
"Could Not Resolve Bcc Recipient")
If res = vbNo Then
Cancel = True
End If
End If
End If
Set objRecip = Nothing
End Sub
Subscribe to:
Post Comments (Atom)
Blog Archive
-
▼
2015
(10)
-
▼
July
(7)
- How to enable SFTP with Filezilla Server
- Tidy WWW Log files and only keep the last 5 days w...
- Recurse through a directory of Tif images and Comp...
- BCC Emails from Outlook Script
- SQL to restore Admin database
- Upgrading and Installing TFS 2005 to TFS 2013
- SQL Server Backup Stored Procedure and Usage and a...
-
▼
July
(7)
No comments:
Post a Comment
Note: only a member of this blog may post a comment.