Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Using Outlook or Google Apps

...

This one has NPSP Do Not Contact included also. This also includes the letter B, V or O next to the envelope, to tell what issue it is. It's a bit ugly so remove that if not necessary. 


IF(ISBLANK(Email),"", 
IF( OR(HasOptedOutOfEmail = true, IsBounced__c = true, npsp__Do_Not_Contact__c = true, NoValidEmail__c = true), 
IMAGE("https://login.salesforce.com/logos/Custom/Mail_Red/logo.png","Do Not Email",20,20)& 
IF(OR(npsp__Do_Not_Contact__c = true, HasOptedOutOfEmail = true),"O",IF(IsBounced__c = true,"B",IF(NoValidEmail__c = true,"V",""))), 
IMAGE("https://login.salesforce.com/logos/Custom/Mail_Green/logo.png","Do Not Email",20,20)))

Image Modified

  • Add the extra fields to your Contact layout.
  • Do similar for Phone. 
  • Show it in an Indicator Action so it's prominent. 

...