ActionMailer Inline Image Attachment Issue

B

beanbrown

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 = "(e-mail address removed)"
@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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top