Can I add a direct Call and direct Email buttons to content entries?

My client wants the list of users in Strapi to have a Call button and Email button (you know, the mailto: callto: stuff in html). Is there a builtin way for this, or is there a plugin?

This topic has been created from a Discord post (1243325801735389348) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Strapi only has some predefined injection zones, see here: https://docs.strapi.io/dev-docs/api/plugins/admin-panel-api#using-predefined-injection-zones But I dont think any of these would work for you, since you seemingly want a button for every user row in the user result table. An option would be to click into a user and then create these buttons there in the informationsor right-linkszone. The last resort could be to create a custom one with a patch-package, but this is usually not recommended and can be complicated and though to maintain.
Another option is to create a new section via a plugin, where you have free rein over everything.