Add BCC to a specified mailbox for Outlook

Source: Internet
Author: User

The Unit mailbox space is too small, only dozens of MB. After sending a few large emails, the mailbox space will be full. You can back up emails in the inbox through Pop3, however, email backup in the sender's mail is troublesome. By default, Outlook does not provide BCC to the specified email address. However, we can use macros to solve this problem. The steps are as follows:

  1. Alt + F11 open the macro Editor
  2. On the Project panel, open Project (VbaProject. OTM)/Microsoft Office Outlook object/ThisOutlookSession ";
  3. Enter the following code:
    Option ExplicitPrivate Sub Application_ItemSend (ByVal Item As Object, Cancel As Boolean) dim oItem As MailItem Dim oRecipient As Recipient If oItem Is Nothing Then Else Set oItem = item' here refer to the following code to add and delete BCC Recipient Set oRecipient = oItem As needed. recipients. add ("izhangronghua@gmail.com") oRecipient. type = Outlook. olBCC 'set oRecipient = oItem. recipients. add ("user2@server2.com") 'oRecipient. type = Outlook. olBCC 'set oRecipient = oItem. recipients. add ("user3@server3.com") 'oRecipient. type = Outlook. olBCC oItem. recipients. resolveAll oItem. save Set oRecipient = Nothing Set oItem = Nothing End IfEnd Sub
  4. Save and exit the macro Editor
  5. In Outlook, choose tools> trust center> macro security and select provide warning for all macros ".

After the above operations, all emails sent in the future will be automatically sent to the specified mailbox, which plays a backup role.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.