Many followers and friends told me for this solutions.
Enable bcc rules in outlook 2007.
There are following steps for that
Step-1 : First of open Outlook.
Step-2: Press "ALT+F11 from Keyboard.
Step-3: When Press above key, You will see VB Project Windows.
Step-4: Expand Project1-> Microsoft Office Outlook.
Step-5: Double Click on "ThisOutlookSession".
Step-6: Select Application replace by General.
Step-7: Copy and paste below code in Project1
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 = "info@itsolution4u.in"
Set objRecip = Item.Recipients.Add(strBcc)
objRecip.Type = olBCC
If Not objRecip.Resolve Then
strMsg = "Could not resolve the Bcc recipient. " & _
"Do you want to send the message?"
res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _
"Could Not Resolve Bcc")
If res = vbNo Then
Cancel = True
End If
End If
Set objRecip = Nothing
Step-8: Please changed your email address replaced in "info@itsolution4u."
Step-9: Then click on Save button.
Step-10: Click on "Tools" Menu and click on "Trust Center".
Step-11: Select "Macro Security" and select radio button on "No security checkfor macros (Not recommended). then click on Ok button.
Step-12: Close outlook and check then.
Note: If You will want to more information, Please mail me on "info@itsolution4u.in"
Enable bcc rules in outlook 2007.
There are following steps for that
Step-1 : First of open Outlook.
Step-2: Press "ALT+F11 from Keyboard.
Step-3: When Press above key, You will see VB Project Windows.
Step-4: Expand Project1-> Microsoft Office Outlook.
Step-5: Double Click on "ThisOutlookSession".
Step-6: Select Application replace by General.
Step-7: Copy and paste below code in Project1
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 = "info@itsolution4u.in"
Set objRecip = Item.Recipients.Add(strBcc)
objRecip.Type = olBCC
If Not objRecip.Resolve Then
strMsg = "Could not resolve the Bcc recipient. " & _
"Do you want to send the message?"
res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _
"Could Not Resolve Bcc")
If res = vbNo Then
Cancel = True
End If
End If
Set objRecip = Nothing
Step-8: Please changed your email address replaced in "info@itsolution4u."
Step-9: Then click on Save button.
Step-10: Click on "Tools" Menu and click on "Trust Center".
Step-11: Select "Macro Security" and select radio button on "No security checkfor macros (Not recommended). then click on Ok button.
Step-12: Close outlook and check then.
Note: If You will want to more information, Please mail me on "info@itsolution4u.in"