Yes, you can automatically CC an email ID in every outgoing email in Gmail by setting up a filter with a forwarding rule or using Google Workspace (G Suite) Rules. Here are the possible methods:
Method 1: Using Gmail Filters & Forwarding (Limited Approach)
This method works only for forwarding, not CCing. Gmail does not allow auto-CC via filters, but you can forward emails to a specific address.
- Open Gmail and click on the Settings (⚙️) > See all settings.
- Go to the Filters and Blocked Addresses tab.
- Click Create a new filter.
- In the filter criteria, you can enter:
- From: (your email or all emails)
- To: (specific recipients)
- Click Create filter.
- Check Forward it to, then Add forwarding address (Enter the email ID you want to CC).
- Save the settings.
Limitation: Gmail does not support CC, only forwarding.
—
Method 2: Using Google Workspace (G Suite) Compliance Rule
If you have Google Workspace (formerly G Suite), you can enforce auto-CC using the Compliance Rules.
- Sign in to Google Admin Console (https://admin.google.com/).
- Navigate to Apps > Google Workspace > Gmail > Compliance.
- Look for Routing or Content compliance.
- Click Add Rule.
- Set conditions (e.g., “Apply to all outgoing messages”).
- Under “Add more recipients”, enter the email you want to CC.
- Choose “Add recipients as CC” (if available).
- Save the settings.
Advantage: This method works organization-wide.
—
Method 3: Using a Gmail Add-on or Script (For Personal Gmail)
If you don’t have Google Workspace, you can use a Google Apps Script to auto-CC an email ID in every outgoing email.
- Open Google Apps Script.
- Click New Project.
- Paste the following script:
function autoCc(e) {
var draft = e.message;
var ccEmail = "youremail@example.com"; // Change to the email ID you want to CC
draft.cc = ccEmail;
}
- Click Triggers > Add Trigger.
- Select:
- Function:
autoCc
- Event: On Gmail Send
- Save and authorize.
This script automatically CCs every email when you send it.
—
Which Method is Best for You?
- For Personal Gmail → Use Google Apps Script.
- For Google Workspace (Business Gmail) → Use Google Admin Console Compliance Rules.
- For Basic Forwarding → Use Gmail Filters & Forwarding.
Let me know if you need help setting it up! 🚀