Send HTML emails with inline images with ActionMailer

前端 未结 2 762
执笔经年
执笔经年 2021-01-21 05:09

I have a simple ActionMailer class like this:

class MyMailer < ActionMailer::Base
  def mail(from, to, cc, bcc, subject, message, sent_at = Time.now)
    @sub         


        
2条回答
  •  情歌与酒
    2021-01-21 05:56

    have you seen: http://edgeguides.rubyonrails.org/action_mailer_basics.html#sending-emails-with-attachments for rails3

    and:

    http://guides.rubyonrails.org/action_mailer_basics.html#sending-emails-with-attachments

    for rails2

提交回复
热议问题