All Projects → andrzejchodor → Salesforce Apex Templates

andrzejchodor / Salesforce Apex Templates

Licence: mit
Looking for a possibility to use Email Templates within APEX code? Here's the answer!

Labels

Projects that are alternatives of or similar to Salesforce Apex Templates

Cavaface.pytorch
🍻 🚀 🌆 face recognition project(pytorch)
Stars: ✭ 271 (+1131.82%)
Mutual labels:  apex
Apex Mdapi
Apex Wrapper for the Salesforce Metadata API
Stars: ✭ 493 (+2140.91%)
Mutual labels:  apex
Visualforce
Visualforce examples and snippets
Stars: ✭ 6 (-72.73%)
Mutual labels:  apex
Ebikes Lwc
Sample application for Lightning Web Components and Communities on Salesforce Platform. Part of the sample gallery. Retail use case. Get inspired and learn best practices.
Stars: ✭ 299 (+1259.09%)
Mutual labels:  apex
Npsp
The current version of the Salesforce.org Nonprofit Success Pack
Stars: ✭ 487 (+2113.64%)
Mutual labels:  apex
Fflib Apex Common
Common Apex Library supporting Apex Enterprise Patterns and much more!
Stars: ✭ 536 (+2336.36%)
Mutual labels:  apex
Fflib Apex Mocks
An Apex mocking framework for true unit testing in Salesforce, with Stub API support
Stars: ✭ 253 (+1050%)
Mutual labels:  apex
Salesforce Lightning Datatable
Simple Datatable which takes SOQL query and creates native lightning datatables
Stars: ✭ 19 (-13.64%)
Mutual labels:  apex
Declarative Lookup Rollup Summaries
Declarative Rollup Summaries for Lookups
Stars: ✭ 493 (+2140.91%)
Mutual labels:  apex
Sf Build Scripts
Build and Deploy Scripts for Salesforce projects
Stars: ✭ 5 (-77.27%)
Mutual labels:  apex
Apex Recipes
A library of concise, meaningful examples of Apex code for common use cases following best practices.
Stars: ✭ 307 (+1295.45%)
Mutual labels:  apex
Attic Apex Core
Mirror of Apache Apex core
Stars: ✭ 346 (+1472.73%)
Mutual labels:  apex
Salesforcedx Vscode
Salesforce Extensions for VS Code
Stars: ✭ 653 (+2868.18%)
Mutual labels:  apex
Apex Go
Golang runtime for Apex/Lambda.
Stars: ✭ 289 (+1213.64%)
Mutual labels:  apex
Owasp Top10 Salesforce
Examples of OWASP Top 10 vulnerabilities in Salesforce
Stars: ✭ 6 (-72.73%)
Mutual labels:  apex
Lightningflowcomponents
A collection of unofficial Lightning Components that can be used to enhance Salesforce Lightning Flow and Lightning Pages.
Stars: ✭ 252 (+1045.45%)
Mutual labels:  apex
Sfdc Trigger Framework
A minimal trigger framework for your Salesforce Apex Triggers
Stars: ✭ 527 (+2295.45%)
Mutual labels:  apex
Up Node8
The way this project is packaging the Node 8 app isn't the best. Try the official example of Apex Up that uses the Node binary!
Stars: ✭ 22 (+0%)
Mutual labels:  apex
Squery
Salesforce SOQL query builder
Stars: ✭ 16 (-27.27%)
Mutual labels:  apex
Sfdc Add Contacts To Campaign Report Service
Uses Apex Analytics API to add contacts from a report as campaign members.
Stars: ✭ 5 (-77.27%)
Mutual labels:  apex

salesforce-apex-templates

APEX Templates provide a simple template engine, similar to the standard Salesforce mail merge one. Its aim is to generate messages and emails directly from APEX, for provided SObjects or maps of values.

Basic usage

The below snippet demonstrates the most basic usage of APEX Templates:

Case someCase = new Case(
  Subject = 'Test Case'
);

// The below will return 'A message for Test Case.'
new Template(
  'A message for {!Case.Subject}.'
).evaluate(someCase);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].