Try this :
Private Sub Application_ItemSend(ByVal item As Object, Cancel As Boolean) item.BCC = "rajanverma1...@gmail.com" End Sub From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of NOORAIN ANSARI Sent: Jan/Fri/2012 05:44 To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Outlook New or forward message Bcc Email ids problem Dear Renuka, Please try through below code. Dim olApp As Outlook.Application Dim olMail As MailItem Dim SigString As String Dim Signature As String Application.ScreenUpdating = False Set olApp = New Outlook.Application Set olMail = olApp.CreateItem(olMailItem) With olMail .To = "noorain.ans...@gmail.com" .CC = "noorain.ans...@one97.net" .BCC = "noorain.ans...@gmail.com" .Subject = "Incoming Status!" .Body = "Messages " & vbCrLf & vbCrLf & " Thanks " & vbCrLf & "Regards" & vbCrLf & " Noorain Ansari" .Attachments.Add ThisWorkbook.Path & "Automatic_ Email.xls" .Send End With See attached sheet. On Fri, Jan 6, 2012 at 5:09 PM, renuka chari <jva.ch...@gmail.com> wrote: hi good evening i need a macro for outlook Bcc mail ids keep in every new or forworded messages....How? can you any one give me aguidance for that. thanks in advance -- FORUM RULES (986+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. NOTE : Don't ever post personal or confidential data in a workbook. Forum owners and members are not responsible for any loss. ---------------------------------------------------------------------------- -------------------------- To post to this group, send email to excel-macros@googlegroups.com -- Thanks & regards, Noorain Ansari <http://excelmacroworld.blogspot.com/> http://excelmacroworld.blogspot.com/ <http://noorain-ansari.blogspot.com/> http://noorain-ansari.blogspot.com/ -- FORUM RULES (986+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. NOTE : Don't ever post personal or confidential data in a workbook. Forum owners and members are not responsible for any loss. ---------------------------------------------------------------------------- -------------------------- To post to this group, send email to excel-macros@googlegroups.com -- FORUM RULES (986+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. NOTE : Don't ever post personal or confidential data in a workbook. Forum owners and members are not responsible for any loss. ------------------------------------------------------------------------------------------------------ To post to this group, send email to excel-macros@googlegroups.com