Re: [Rails] Trouble sending email image attachment with rails

2011-01-21 Thread Philip Hallstrom
On Jan 21, 2011, at 2:22 PM, Jim Burgess wrote: > Hi, > > I'm trying to use ActionMailer to send an image as an attachment to an > email. Here's my code: > > class ContactMailer < ActionMailer::Base > def message(sent_at = Time.now) >from 'b...@example.com' >recipients 'j...@example.co

[Rails] Trouble sending email image attachment with rails

2011-01-21 Thread Jim Burgess
Hi, I'm trying to use ActionMailer to send an image as an attachment to an email. Here's my code: class ContactMailer < ActionMailer::Base def message(sent_at = Time.now) from 'b...@example.com' recipients 'j...@example.com' subject 'New message' sent_on sent_at body {}