Skip to content
Snippets Groups Projects
Commit 60839ef5 authored by Nicolas Lempereur's avatar Nicolas Lempereur
Browse files

[FIX] mass_mailing, web_editor: send mail to outlook and keep image size


Office Outlook doesn't take into account the [style] attribute, and it
doesn't manage width/height in percent value.

This commit set width/heigth attribute in pixels and also always set the
width/height in style attribute (keeping them in the original unit and
setting them to auto if not present).

This is a reintroduction of 2015 commit bdf58adb

opw-2447756

closes odoo/odoo#65218

X-original-commit: c51762a7
Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
parent ec12b112
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,15 @@ var MassMailingFieldHtml = FieldHtml.extend({
convertInline.fontToImg($editable);
convertInline.classToStyle($editable);
// fix outlook image rendering bug
_.each(['width', 'height'], function(attribute) {
$editable.find('img[style*="width"], img[style*="height"]').attr(attribute, function(){
return $(this)[attribute]();
}).css(attribute, function(){
return $(this).get(0).style[attribute] || 'auto';
});
});
self.trigger_up('field_changed', {
dataPointID: self.dataPointID,
changes: _.object([fieldName], [self._unWrap($editable.html())])
......
......@@ -422,6 +422,16 @@ FieldHtml.include({
attachmentThumbnailToLinkImg($editable);
fontToImg($editable);
classToStyle($editable);
// fix outlook image rendering bug
_.each(['width', 'height'], function(attribute) {
$editable.find('img[style*="width"], img[style*="height"]').attr(attribute, function(){
return $(this)[attribute]();
}).css(attribute, function(){
return $(this).get(0).style[attribute] || 'auto';
});
});
this.wysiwyg.setValue($editable.html(), {
notifyChange: false,
});
......@@ -439,6 +449,10 @@ FieldHtml.include({
styleToClass($editable);
imgToFont($editable);
linkImgToAttachmentThumbnail($editable);
// fix outlook image rendering bug
$editable.find('img[style*="width"], img[style*="height"]').removeAttr('height width');
this.wysiwyg.setValue($editable.html(), {
notifyChange: false,
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment