HA Core/smtp: add videos to email

I would like to attach my camera video sequence to an notification email, but there is only an option attach images.
Would be great to get a new option “videos:” to attach e.g. video.mp4 file.

  - service: notify.mail_provider
    data:
      title: 'eMailTitle'
      message: 'emailBody'
      data:
        videos: <--- new videos option instead images only
        - 'video.mp4'

Here is how it is currently defined for images:

configuration.yaml:

notify:
  - name: mail_provider
    platform: smtp
    sender: "[email protected]"
    sender_name: "CamMon"
    recipient:
      - "[email protected]"
    server: "mailserver.domain.tld"
    port: 587
    timeout: 15
    encryption: starttls
    username: !secret "mail_user"
    password: !secret "mail_password"

automation:

  - service: notify.mail_provider
    data:
      title: 'eMailTitle'
      message: 'emailBody'
      data:
        images:
        - 'video.mp4'

Greetings,
Alex

Hi Alex you cant do it

Thats why I opened this in Feature Requests

Bump topic: Anyone else interested in this feature?
It would be very helpful, if videos could be attached to email notifications!
Please vote, if you like it.

THX, would use it …