Is your feature request related to a problem? Please describe.
When pasting an image in to a mail we store it in the <img> src attribute as a data URL.
`<img src="data:image/png;base64,iVBO...`
This causes the browser to struggle with staying response. The larger the file size the inline image is the more apparent it becomes.
Describe the solution you'd like
Use blob URLs instead.
Describe alternatives you've considered
Uploading the inline images directly to the server and the using the ULRs to the uploaded files.
Using uploaded images is a good solution once the composed data was save as draft.
Until first save as draft blob URL work without requiring a server to upload the images.
Additional context
No response
Is your feature request related to a problem? Please describe.
When pasting an image in to a mail we store it in the
<img>srcattribute as a data URL.This causes the browser to struggle with staying response. The larger the file size the inline image is the more apparent it becomes.
Describe the solution you'd like
Use blob URLs instead.
Describe alternatives you've considered
Uploading the inline images directly to the server and the using the ULRs to the uploaded files.
Using uploaded images is a good solution once the composed data was save as draft.
Until first save as draft blob URL work without requiring a server to upload the images.
Additional context
No response