Unfortunately this is my first exposure to VBA plus I have a cold so my head is not working right. I've moved that text but still getting an error, albeit it in a different place: 
 
http://imm.io/19xQ9 
 
I've pasted the code here in the hopes that you may take pity on my befuddled state and put it in the right order ... 
 
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 = "1kawa9@mails.zohocrm.com" 
 
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 
 
Set objRecip = Nothing 
 
End Sub 
 
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 
 
If Item.Categories = "personal" Then 
 
Exit Sub 
 
Else 
 
'bcc code 
 
end if Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) 
 
' #### USER OPTIONS #### 
 
' address for Bcc -- must be SMTP address or resolvable 
 
' to a name in the address book 
 
strBcc = "1kawa9@mails.zohocrm.com" 
 
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 
 
Set objRecip = Nothing 
 
End Sub