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
SFDummySFDummy 

Image(logo) to email templates - prepare split instance

Hello,
How do I update may email template image URL  in preparation for split instance? my current code looks like below
<img src="https://na3.salesforce.com/servlet/servlet.ImageServer?
id=015D0000000Dpwc&oid=00DD0000000FHaG&lastMod=1270576568000" alt="Company Logo" height="64" width="64"/>
what should be the new code, in preparation for split instance?
 
Andy BoettcherAndy Boettcher
You should only ever be using RELATIVE urls in your code, never ABSOLUTE.
 
<img src="/servlet/servlet.ImageServer?
id=015D0000000Dpwc&oid=00DD0000000FHaG&lastMod=1270576568000" alt="Company Logo" height="64" width="64"/>

 
SFDummySFDummy
Thanks Andy for the response. Image is not show in email when I use the suggested relative path.