function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Ashok Kumar NayakAshok Kumar Nayak 

Can't able to view content of Email Publisher

Hi Guyz,
I'm trying to implement a custom Email Send Functionality using Email Publisher.
But I'm getting this error when I'm trying to view the page :- 

Content cannot be displayed: Invalid partition - partition 'local.XXXXXX' does not exist.

Here's my VF Page Content :-
<apex:page standardController="Case" >

    <apex:emailPublisher entityId="{!case.id}"
        autoCollapseBody="false"
        emailBodyHeight="500em"
        fromVisibility="selectable"
        fromAddresses="{!$User.Email}"
        subjectVisibility="editable"
        toVisibility="editableWithLookup"
        toAddresses="{!case.contact.email}"
        enableQuickText="true"
        expandableHeader="false"
        sendButtonName="Send Email"
        showAdditionalFields="true"
        showSendButton="true"
        emailBodyFormat="textAndHTML"
        bccVisibility="editableWithLookup"
        ccVisibility="editableWithLookup"
                
    emailBody=""/>


</apex:page>