ruby中發送帶附件,中文,html的email

來源:互聯網
上載者:User

mailfactory是rubyforge上一個簡單的郵件發送包, 通過它我們可以很方便的發送帶附件和html格式的郵件,不過目前的mailfactory在支援中文上有一些問題, 需要打一個補丁

 

先需要通過 gem install mailfactory 安裝

 

然後是對mailfactory的補丁,可以直接修改mailfactory的源檔案,也可以單獨作一個檔案mailfactory_enhence.rb,只要在require 'mailfactory'以後require 它就可以了

 

# 對mailfactory打補丁,增加了一個encoding參數
class MailFactory
  attr_accessor :encoding
  
  def html=(newhtml)
  @html = "<html>\n<head>\n<meta content=\"text/html;charset=#{encoding}\" http-equiv=\"Content-Type\">\n</head>\n<body bgcolor=\"#ffffff\" text=\"#000000\">\n#{newhtml}\n</body>\n</html>"
  end
  def body_to_s()
  body = Array.new()
  
  # simple message with one part
  if(!multipart?())
   return(@text)
  else
   body << "This is a multi-part message in MIME format.\r\n\r\n--#{@attachmentboundary}\r\nContent-Type: multipart/alternative; boundary=\"#{@bodyboundary}\""
   
   if(@attachments.length > 0)
    # text part
    body << "#{buildbodyboundary("text/plain; charset=#{encoding}; format=flowed", '7bit')}\r\n\r\n#{@text}"
    
    # html part
    body << "#{buildbodyboundary("text/html; charset=#{encoding}", '7bit')}\r\n\r\n#{@html}"
    
    body << "--#{@bodyboundary}--"
    
    # and, the attachments
    if(@attachments.length > 0)
     @attachments.each() { |attachment|
      body << "#{buildattachmentboundary(attachment)}\r\n\r\n#{attachment['attachment']}"
     }
     body << "\r\n--#{@attachmentboundary}--"
    end
   else
    # text part
    body << "#{buildbodyboundary("text/plain; charset=#{encoding}; format=flowed", '7bit')}\r\n\r\n#{@text}"
    
    # html part
    body << "#{buildbodyboundary("text/html; charset=#{encoding}", '7bit')}\r\n\r\n#{@html}"
    
    body << "--#{@bodyboundary}--"
   end
   
   return(body.join("\r\n\r\n"))
  end
 end 
end 

最後開始使用: mailfactory的使用非常簡單, 例子如下

 

#使用方法非常簡單
    mail=MailFactory.new 
    mail.encoding="GBK" #設定encoding
    mail.to=['a@sina.com','b@sina.com'].join(',') #多個收件者
    mail.from='from@host.com' 
    mail.subject='subject'
    mail.html='</font color="red">htmlconternt</font>'
    mail.text='please use html view'
    mail.attach('/usr/local/test.file')
    Net::SMTP.start(@smtp_host) do |smtp|
      smtp.send_message(msgstr,from,to)
    end

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.