Append images to a Rich Text field using a Flow (Admin-Oriented)
This article demonstrates how to append images to a Rich Text field using a Flow.
Pre-requirements:
For this demo, you should ensure that the SharinPix Image Sync feature is activated for the object you intend to use. For more information on how to set up the Image Sync, you can refer to the following article: Setup SharinPix Image Sync
In the following sections, we will use the Account object and configure an automation that will append images to a Rich Text whenever an Account record's type is changed to a specific value using the SharinPix Apex class, SharinPixToRichTextAutomation. To do so, we will use a Salesforce Flow
The Apex class, SharinPixToRichTextAutomation, provides several fields that can be used to parameterize the Rich Text. The table below provides more details for each field:
Record ID
The current record ID.
Yes
Rich Text Field API Name
The API name of the target Rich Text field.
Yes
Image URL Field API Name
The API name of the image URL field. Some available values are: sharinpix__ImageURLFull__c, sharinpix__ImageURLOriginal__c, sharinpix__ImageURLThumbnail__c, sharinpix__ImageURLMini__c You can also create a custom image URL field on the SharinPix Image object.
Yes
List of Image Public IDs
The list of public IDs of images to be included in the Rich Text field. If no value is provided for this field, all images available on the record's album will be included in the Rich Text field.
No
Replace Rich Text Area Content
When the value is set to true, the existing content of the target Rich Text Area will be replaced.
No
Image Caption Text
The API name of the field containing the text to be displayed alongside the image. Some accepted values here are any API name of Text fields available for the SharinPix Image object such as Name, sharinpix__Title__c, or Title & Description.
No
Number of Columns
The number of columns to be included in the Rich Text field. The default column value is 1 and the accepted value ranges from 1 to 10 columns.
No
The SharinPix package includes the Apex class SharinPixToRichTextAutomation which is used in Flows to append images to a Rich Text field.
Please note that this class is available in package version 1.194 and above. If your SharinPix package has an older version, you can refer to the following article to update it:
Creation of the Flow
This section demonstrates how to create a Flow that invokes the Apex class SharinPixToRichTextAutomation to append images to a specific Rich Text field.
To do so, follow the steps below:
On the Account object, create a new Rich Text field named Images (You can skip this step if you have already created the field in the previous section)
Go to Setup. In the Quick Find Box, type Flow
Under Process Automation, select Flows
Click on the button New Flow located in the top right corner
Select Record-Triggered Flow as the Flow type
Once on the Flow builder, click on the Edit link located in the Start element

For the, Trigger the Flow When, section, select A record is updated
For the, Run the Flow section, select After the record is saved

Next, click on the Choose Object button located on the Start element, then
Choose Account as the object
Leave the Condition Requirements section as After the record is saved
Next, choose Type as the field, Equals as the operator and Customer - Channel as the value
For the When to Run the Flow for Updated Records section, select Only when a record is updated to meet the condition requirements
Click on Done to apply the changes
Then, go to the Manager tab and click on the New Resource button to create a variable as follows:
For the variable, select Variable as the Resource Type
Enter recordId as the API Name
Select Text as the Data Type
For the Availability Outside the Flow section, select Available for input
Click Done to save

Next, drag and drop an Assignment element onto the canvas. For this element, enter the following details:
Enter Assign Record ID as the label
In the Set Variable Values section, enter recordId as the Variable, Equals as the operator and for the value, click on$Record__Prior followed by Id.
Click on Done to save

Connect the Assignment element to the Start element
Next, drag and drop an Action element
In the Action search bar, search for sharinpix__SharinPixToRichTextAutomation
Enter Append images to Rich Text for the label
In the Set Input Values, configure the fields as follows:
For the field Image URL Field API Name, enter the desired image URL field's API name. For this example, the field sharinpix__ImageURLThumbnail__c was used
For the field Record ID, choose the variable recordId
For the field Rich Text Field API Name, enter the desired Rich Text field API name. In this case it is Images__c.

The fields Image URL Field API Name, Rich Text Field API Name, and Record ID are mandatory and must therefore always be provided with a value.
There are 4 additional non-mandatory fields that are also provided by the SharinPixToRichTextAutomation Apex class. You will find more information regarding these fields in the table available at the beginning of this article.
Let's add some of them by selecting the Include button and entering the required values as follows:
For the Image Caption Text field, enter Name
For the field, Number of Columns, enter the value 2
For the Replace Rich Text Area Content, select {!$GlobalConstant.True}
Click Done to save

Tips:
In the above example, we did not specify a predefined list of images to append to the Rich text. In this case, all images uploaded onto the record's album will be appended to the Rich Text by default.
Contrary to Process Builders, Salesforce Flows also allow you to filter the images you want to add to the Rich Text. For example, if you only want SharinPix images having the png format to be appended, you can set up the Flow in such a way to store these images in a Collection Variable and pass the same variable as the value for the List of Image Public IDs field
Connect the Action element to the Assignment element before saving and activating your Flow

Warning:
Starting with the Salesforce Winter’26 release, Apex Actions can no longer be executed directly in the Run Immediately path of a record-triggered flow. Instead, they must be placed in an asynchronous path, as the synchronous execution option is no longer supported.
For more details, please refer to the documentation here: Unable to save a flow with an Apex Action after the Salesforce Winter ’26 release – What should I do?
Demo
To test the Flow:
Go to an Account record
In the record's Details section, change the value of the field Type to Customer - Channel to append the images to the Rich Text field.
Check if the Rich Text field, Images, has been populated accordingly:

DEPRECATED: Creation of the Process Builder
This section demonstrates how to create a Process Builder that invokes the Apex class SharinPixToRichTextAutomation to append images to a specific Rich Text field.
To do so, follow the steps below:
On the Account object, create a new Rich Text field named Images
Go to Setup. In the Quick Find Box, type Process Builder
Under Process Automation, select Process Builder
Click on New
For the newly-created Process Builder:
For the field, Process Name, enter SharinPix - Append images to Rich Text field
Enter a description for the process (This step is optional)
For the field, The process starts when, select A record changes
Click Save

Once on the Process Builder editor:
Click on Add Object
For the field Object, select Account
For the field Start the process, choose when a record is created or edited
Click on Save

Next, click on Add Criteria
For the field Criteria Name, enter Account Type is Prospect
For the field Criteria for Executing Actions, select Conditions are met
Inside the Set Conditions section
Choose Account Type as the field
Then, select Equals as the operator, Picklist as the type, and Prospect as the value
Leave the field Conditions as All of the conditions are met (AND)
Click on Save when done

Next, click on Add Action
For the Action Type, choose Apex
For the Action Name, enter Append images to Rich Text
For the Apex Class, select sharinpix__SharinPixToRichTextAutomation
Inside the Set Apex Variables:
For the field Image URL Field API Name, enter the desired image URL field's API name. For this example, the field sharinpix__ImageURLThumbnail__c was used. Note: Notice here that the type remains String. You only need to insert the field's API name
For the field, Rich Text Field API Name, enter the desired Rich Text field API name. In this case, it is Images__c. Note: Notice here that the type remains String. You only need to insert the field's API name
For the field Record ID, choose Field Reference as the type and Account ID as the value

The fields Image URL Field API Name, Rich Text Field API Name, and Record ID are mandatory and therefore, should always be provided with a value.
There are 4 additional non-mandatory fields which are also provided by the SharinPixToRichTextAutomation Apex class. You will find more information regarding these fields in the table available at the beginning of this article.
Let's configure some of these parameters in our Process Builder:
To access the parameters, click on the + Add Row link within the Set Apex Variables section
Add the field, Image Caption Text, and enter Name as the value. Note: Notice here that the type remains String. You only need to insert the field's API name
Add the field Replace Rich Text Area Content and enter True as the value
For this demo, we will add a list of pre-defined images to the PDF. Therefore, add the field List of Image Public IDs and enter the image public IDs of the desired images as follows: ["<First image's Public ID>","<Second image's Public ID>","<Third image's Public ID>","<Forth image's Public ID>"]
Here is an example:
["cb3cac5e-17fa-480c-b85f-085c78b8a3ec","cb3cac5e-17fa-480c-b85f-085c78b8a2ee","cb3cac5e-17fa-480c-b85f-085c78b8a4ff","cb3cac5e-17fa-480c-b85f-085c78b8a6gt"]
Click on Save when done

You can now activate the Process Builder.
Last updated
Was this helpful?

