aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2015-05-04 10:43:52 +0100
committerAndrew White <andyw@pixeltrix.co.uk>2015-05-04 10:56:59 +0100
commit60239f3e5a3303b4135e30469ba7dbf27890008d (patch)
tree4da42b69cae65df57d5caaab6a7d9259846204a5 /actionmailer/CHANGELOG.md
parent9f39d3126fe85c94198371fd1cccd408c268529c (diff)
downloadrails-60239f3e5a3303b4135e30469ba7dbf27890008d.tar.gz
rails-60239f3e5a3303b4135e30469ba7dbf27890008d.tar.bz2
rails-60239f3e5a3303b4135e30469ba7dbf27890008d.zip
Add support for inline images to mailer previews
Use a preview interceptor to search for inline cid: urls in src attributes and convert them to data urls.
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index f88f2c0c86..e2285b75e8 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Add support for inline images in mailer previews by using an interceptor
+ class to convert cid: urls in image src attributes to data urls.
+
+ *Andrew White*
+
* Mailer preview now uses `url_for` to fix links to emails for apps running on
a subdirectory.