Salesforce

Personal Email Blocklist in Groove

« Go Back
Information
12/4/2024, 4:32 PM
12/10/2024, 6:25 PM
Fields

Groove Personal Email Blocklist

Groove automatically ensures no internal emails are logged to Salesforce. But if you're emailing any personal contacts from your work email, you may want to add them to your personal blocklist.

 

When you add an email address to your personal blocklist, any emails (inbound or outbound) and calendar events involving that person, won't get logged to Salesforce.

 

Adding People to Your Personal Blocklist

To add someone to your personal blocklist, you'll need to do the following:

 

  1. Search for the person in Omnibar (or compose an email and enter their email address).
  2. Click the 3 vertical dots at the top right of your Omnibar.
  3. Add the person to your personal blocklist.

 

 

With this set up, any emails or events with this person will not be logged to Salesforce.

 

Admin and Apex Developers: Managing Users' Personal Blocklists

An admin or Apex developers may want to add a specific email address to every user's personal blocklist instead of adding the domain to the profile's blocklist in profile settings as this provides more granular control.

 

Read this Salesforce article for info on how, and where, to inject the following code.

 

Use this Apex code as a template to manage their users' blocklists in bulk:

 

List<User> allUsers = [SELECT Id FROM User WHERE IsActive = true];
List<DaScoopComposer__Black_List__c> blackListRecords = new List<DaScoopComposer__Black_List__c>();
for(User user : allUsers) {
DaScoopComposer__Black_List__c blackListRecord = new DaScoopComposer__Black_List__c();
blackListRecord.Name = 'test.email@gmail.com';
blackListRecord.OwnerId = user.Id;
blackListRecords.add(blackListRecord);
}
insert blackListRecords;
Personal Email Blocklist in Groove
Personal-Email-Blocklist

Powered by