-1

我正在使用 ckeditor 我正在发送使用小马宝石邮件进行批量邮寄的申请,但我有几个问题:

  1. 一些标签也通过邮件交付。
  2. 如果我将效果应用到邮件中可见的粗体、斜体、下划线等文本
  3. 图像不可见,而不是 {"body"=>" 可见。

以下是代码...

  1. 我的小马邮件功能...
params[:l].each do |single_email|
        p single_email
        Pony.mail(:to => single_email, :from => 'example@example.co.in', :subject => @bmail.subject, 
      :headers => { "Content-Type" => "text/html"}, :body => @bmail.body, :via => :smtp, :via_options => { 
      :address => "smtp.gmail.com", 
      :port => 587, 
      :domain => 'example.co.in', 
      :user_name => 'example@example.co.in', 
      :password => 'paswd', 
      :authentication => 'plain', 
      :enable_starttls_auto => true 
})    end
  1. 调用ckeditor
%br = cktext_area :body, :body, :ckeditor => {:uiColor => "#AADC6E", :toolbar => "mini"} 
%br

请帮助我发送带有图像和内容的完美邮件,请尽快帮助我。提前谢谢。

4

1 回答 1

0

试试 :html_body => @bmail.body

http://rubydoc.info/gems/pony/1.4.1/frames

于 2013-05-31T15:55:11.053 回答