hi
i create a notification to my android device.
The notification is received but i don’t know why the image is not sent !
here is my code
alias: alarme_send_message
sequence:
- service: camera.snapshot
metadata: {}
data:
filename: /config/www/snapshots/{{title}}.jpg
target:
device_id: "{{message}}"
- service: notify.email
data:
target: [email protected]
message: "{{message}}"
title: "{{title}}"
data:
images:
- /config/www/snapshots/{{title}}.jpg
- service: notify.mobile_app_sm_a528b
data:
message: message1
title: title
data:
images:
- /config/www/snapshots/{{title}}.jpg
mode: single
The email is received with the picture but not the notification
Please help me
thx