Basic Trigger Example

PHOTO EMBED

Sat Jul 24 2021 09:42:42 GMT+0000 (Coordinated Universal Time)

Saved by @yinmaster #apex #salesforce #trigger

trigger ContactTrigger on Contact (before insert) { //Context and Event
   
    if(Trigger.isInsert && Trigger.isBefore) { // Condition
       System.debug(Trigger.new);	// Action
    } 
  
}
content_copyCOPY