Show base 64 image on phone notification

Hi,
I have a service that call an hass webook and pass a Json like this:

{
	"name": "FrontCam",
	"image": "data:image/jpeg;base64,/9j/4..."
}

In the automation I need to send a notification to my phone and show the image
The automation is like this:

alias: webook debugger
description: ""
trigger:
  - platform: webhook
    webhook_id: "--XY9uOdFmSnGm3g5ReJTiZKi"
action:
  - service: notify.mobile_app
    data:
      title: Rilevazione {{ trigger.json.name }}
      message: messaggio
      data:
        image: {{ trigger.json.image }}
mode: single

But no image is showed on phone. How can I do?

Thank you

Nobody can help me?