How do I customize the search for the from line to include Queues and not just Users?
Our goal is to allow people in the Sales Hub to send emails from a shared mailbox. We have it tracking emails from the mailbox because we already created a queue. I have an admin with me with full system admin privileges and they cant see it either, neither can they just select the user mailbox related to the shared mailbox, so we are trying to see if sending from a queue will work for us. We also tried customizing the email form on the backend, but didn't see anywhere about expanding the Table options it that the From line queries from. Does anyone have knowledge on this?
This usually happens when a JavaScript function is added to the Email form to hide queues. Please check the form libraries and the OnLoad event , there’s likely a script controlling the your lookup behavior.
A simple script can hide specific entity types on a partylist lookup, for example:
function filterFromLookup(executionContext) {
var control = executionContext.getFormContext().getControl("from");
if (control) {
control.setEntityTypes(["systemuser"]);
}
}
As far as I know, this is the only supported way to control the entity types shown in the From lookup. Please verify whether your Email form has any custom JavaScript attached.
Regards, Manoj ✅If this answer helped you, please consider marking it as Verified, it really helps others in community
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.