Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Ruby
ActionMailer Inline Image Attachment Issue
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="beanbrown, post: 4504795"] I have been wholely unsuccessful in having an inline image attachment show in an HTML email. I have been able to create an email with plain, html and image parts, but when attempting to set the content-id for an image (so that I can refer back to it in the HTML), I am unable to get it to appear using the headers attribute of the attachment. Here is my code: class Mailer < ActionMailer::Base def email_html( user, to, subject, message ) @recipients = "[email]hello@world.com[/email]" @from = user.emailaddr @subject = subject part :content_type => "text/html", :body => "<b>Welcome to <img src=\"cid:img1\" border=1>!</b>" part "text/plain" do |p| p.body = "this is plain" p.transfer_encoding = "base64" end attachment :content_type => "image/gif", :headers => {'content-id' => 'img1'}, :body => File.read("c:\temp\logo.gif"), :filename => "logo" # this works self.parts[self.parts.length-1].filename = 'foo' # this does not work self.parts[self.parts.length-1].headers['content-id'] = 'bar' end end # Please help! # Eric [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Ruby
ActionMailer Inline Image Attachment Issue
Top