From 49f8356f33382cdefa01a3fa2c400583d97f7279 Mon Sep 17 00:00:00 2001 From: Juanito Fatas Date: Tue, 16 Sep 2014 15:32:38 +0800 Subject: [PATCH] [ci skip] Fix code snippet display in Action Mailer Basics guide. --- guides/source/action_mailer_basics.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index f981d0da47..f6c974c87a 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -298,8 +298,7 @@ Action Mailer 3.0 makes inline attachments, which involved a lot of hacking in p ```html+erb

Hello there, this is our image

- <%= image_tag attachments['image.jpg'].url, alt: 'My Photo', - class: 'photos' %> + <%= image_tag attachments['image.jpg'].url, alt: 'My Photo', class: 'photos' %> ``` #### Sending Email To Multiple Recipients