- Merge request !42Issue #3240329 by krash, joseph.olstad: Implement Image Embed Attachments... → (Open) created by joseph.olstad
I am developing a form and I would need to embed an image in the body of the email (cid).
I saw that in version 7 an issue with the same problem was opened and that this functionality was introduced.
I propose a small patch that adds this functionality: to embed an image just attach it by setting the 'cid' field.
eg.
'attachments' = [
[
'cid' => 'logo',
'filepath' => '/somwhere/logo.png',
'filemime' => 'image/png',
'filename' => 'logo.png',
],
[
'filepath' => '/somwhere/otherimage.png',
'filemime' => 'image/png',
'filename' => 'otherimage.png',
]
];
Active
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.