1. 13 5月, 2013 1 次提交
  2. 10 5月, 2013 2 次提交
  3. 07 5月, 2013 1 次提交
  4. 04 5月, 2013 1 次提交
  5. 23 4月, 2013 2 次提交
  6. 29 1月, 2013 1 次提交
  7. 24 1月, 2013 1 次提交
  8. 04 1月, 2013 1 次提交
  9. 22 12月, 2012 1 次提交
  10. 12 12月, 2012 1 次提交
  11. 10 12月, 2012 1 次提交
  12. 09 12月, 2012 1 次提交
  13. 08 12月, 2012 1 次提交
  14. 02 12月, 2012 1 次提交
  15. 29 11月, 2012 1 次提交
  16. 20 11月, 2012 1 次提交
    • N
      Explicit multipart messages respect :parts_order · 9cf33b55
      Nate Berkopec 提交于
      As issue #7978, the order in which ActionMailer
      sends multipart messages could be unintentionally
      overwritten if a block is passed to the mail
      method. This changes the mail method such that
      :parts_order is always respected, regardless of
      whether a block is passed to mail.
      9cf33b55
  17. 08 11月, 2012 1 次提交
  18. 31 10月, 2012 1 次提交
  19. 29 10月, 2012 1 次提交
  20. 08 10月, 2012 1 次提交
  21. 28 9月, 2012 1 次提交
  22. 22 9月, 2012 2 次提交
  23. 19 9月, 2012 1 次提交
  24. 18 9月, 2012 2 次提交
  25. 17 9月, 2012 1 次提交
  26. 13 9月, 2012 2 次提交
  27. 12 9月, 2012 1 次提交
  28. 05 9月, 2012 1 次提交
  29. 29 8月, 2012 1 次提交
  30. 08 8月, 2012 1 次提交
  31. 03 8月, 2012 1 次提交
  32. 31 7月, 2012 1 次提交
  33. 07 7月, 2012 1 次提交
  34. 04 7月, 2012 1 次提交
    • R
      Introduce config.action_mailer.default_from= · edaa2c48
      Robert Pankowecki 提交于
      Allows to easily set :from, :replay_to, etc. options in
      config/application.rb using simple syntax:
      
        config.action_mailer.default_options = {from:"no-replay@example.org"}
      
      This was not possible using #default method because
      
        config.action_mailer.default(from: "no-replay@example.org")
      
      is interpreated as reader method and just returns nil.
      It would not call ActionMailer::Base.default method. The only
      way of calling this method from config/application.rb was to use
      the direct syntax which looks ugly in my opinion:
      
        config.assets.enabled = false
        config.assets.version = '1.0'
        config.encoding = "utf-8"
        config.action_mailer.default_url_options= {
          host:"example.org",
          protocol:"https"
        }
        ActionMailer::Base.default(from: "no-replay@example.org")
      edaa2c48
  35. 29 6月, 2012 1 次提交