Ruby on Rails Tuesday, July 31, 2012

yes this will send one mail with attachment of image.png. But when i open or download that image, that is empty.?



imageurl = https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=5&choe=UTF-8
require 'open-uri'
class UserMailer < ActionMailer::Base
  default :from => "mail@example.com"
  
  def welcome_email(imageurl,mailid)

    attachments['QR.png'] = {:mime_type => 'image/png',
                                     :content => open(URI.parse(imageURL))}
    mail(:to => mailid,
    :subject => "Code",
    :body => "Code")
  end
end

Thanks 
vishnu

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/bPjFh56Cq5EJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

No comments:

Post a Comment