How do you automatically bcc yourself in microsoft mail

To automatically BCC yourself in Microsoft Mail (Outlook), you can follow these steps:

Method 1: Using the "BCC" field in the "New Email" window

  1. Open Microsoft Mail (Outlook) and create a new email by clicking on the "New Email" button.
  2. In the "To" field, enter the email addresses of the recipients you want to send the email to.
  3. Click on the "BCC" field and enter your own email address.
  4. The "BCC" field will automatically add your email address to the BCC list.
  5. Click "Send" to send the email.

Method 2: Using a rule in Outlook

  1. Open Microsoft Mail (Outlook) and go to the "File" menu.
  2. Click on "Manage Rules & Alerts" and then click on "New Rule".
  3. Select "Start from a blank rule" and click "Next".
  4. Choose "Apply rule on messages I send" and click "Next".
  5. Select "BCC" and then click "Specify a name or email address".
  6. Enter your own email address and click "OK".
  7. Click "Finish" to save the rule.

Method 3: Using a macro in Outlook

  1. Open Microsoft Mail (Outlook) and go to the "Developer" tab (if you don't see this tab, you may need to enable it by going to "File" > "Options" > "Customize Ribbon" and checking the box next to "Developer").
  2. Click on the "Visual Basic" button in the "Developer" tab.
  3. In the Visual Basic Editor, click "Insert" > "Module" to insert a new module.
  4. Paste the following code into the module:
    Sub BCCMyself()
     Dim olMail As Object
     Set olMail = Application.CreateItem(0)
     olMail.To = "[email protected]"
     olMail.BCC = "[email protected]"
     olMail.Subject = "Test email"
     olMail.Body = "This is a test email."
     olMail.Send
    End Sub
  5. Replace "[email protected]" with the email address of the recipient you want to send the email to, and "[email protected]" with your own email address.
  6. Click "Run" to run the macro.

Note: The above code is just an example and you may need to modify it to suit your specific needs. Additionally, be careful when using macros as they can potentially cause issues with your Outlook installation.