Blogs

  • Email Applications – Apex Programming Language

    Utilize Apex for Email Applications When sending emails to or receiving emails from external systems in Salesforce, email programs come into play. There are two categories of emails. Outgoing email applications Outbound email programs are used to send an email to an external system using apex. There are two types of outbound emails. 1. SingleEmailMessage: Employed…

    Read more…

  • Implementing A Salesforce APEX Trigger For Upserting A Lead

    The SaaSquatch Managed Package for Salesforce incorporates several global classes and invocable methods that are applicable for upserting users from APEX code. In this tutorial, we will guide you through the process of creating an APEX Trigger and utilizing it to upsert users in SaaSquatch when a Lead is generated in Salesforce. Prerequisites This article…

    Read more…

  • Public, Private, Protected, And Global Keywords in Apex Programming

    Public, private, protected, and global can also be referred to as access modifiers. Apex supports these four types of modifiers. 1. public This keyword is used to Defines a class or method or variable that can be used by any Apex in this application or namespace. Example 2. private This key word is used to…

    Read more…