Send Hyperlink from BOT in Salesforce Messaging for In-App and Web
In order to send URL Link or Hyperlink from the Salesforce Einstein BOT when using Messaging for In-App and Web, use the Enhanced Link component. 1. Create a Messaging Component ....
In order to send URL Link or Hyperlink from the Salesforce Einstein BOT when using Messaging for In-App and Web, use the Enhanced Link component. 1. Create a Messaging Component ....
We can use Crypto.encryptWithManagedIV() and Crypto.decryptWithManagedIV() with at least 16 bytes key for Advanced Encryption Standard(AES) using Salesforce Apex. Sample Code: /* Encryption */ Blob key = Blob.valueOf( '1234567890=abcde' ); ....
Using JavaScript, we can set the the Keyboard shortcut to start or initialize or initiate the Salesforce Chat. The following implementation is for Salesforce Embedded Service Deployment Chat. In the ....
Use the following steps to pass values to custom fields on the Salesforce Chat Transcript object(LiveChatTranscript). 1. Create the Custom Fields on the Salesforce Chat Transcript object(LiveChatTranscript). 2. Add the ....
Using Salesforce Apex and FileReader() and encodeURIComponent() from JavaScript, we can easily upload a file using Lightning Web Component lightning:input of type file. Sample Code: Apex Class: public class FileUploadController ....
Ant Commands will not work and throw"'ant' is not recognized as an internal or external command, operable program or batch file" exception if the Environment Variable for the Ant installed ....
Using Salesforce Apex and FileReader() and encodeURIComponent() from JavaScript, we can easily upload a file using Aura Component lightning:input of type file. Sample Code: Apex Class: public class FileUploadController { @AuraEnabled ....
CC Field: CC Field in Salesforce is used to define email addresses. It can contain array or list of email addresses. CC Recipients Field: CC Recipients Field is used to ....
Whenever Files or Documents are download, there will be an entry in ContentVersionHistory entity or object in Salesforce. So, we can query the ContentVersionHistory entity/object with Field value as contentVersionDownloaded ....
Event Log Files can be used to find the Documents or Files viewed by the users in Salesforce. 1. Find the Event Log Files with ContentTransfer as the Event Type. ....