1. 24 11月, 2015 5 次提交
  2. 31 10月, 2015 1 次提交
  3. 30 10月, 2015 9 次提交
  4. 28 9月, 2015 1 次提交
  5. 14 8月, 2015 1 次提交
    • A
      ActionMailer https on URL with force_ssl = true · f0a3af20
      Andrew Kampjes 提交于
      `config.force_ssl = true` will set
      config.action_mailer.default_url_options = { protocol: 'https' }
      
      If you have turned on force_ssl, and then gone to the effort of setting
      config.action_mailer.default_url_options = {host: 'example.com'} then
      you are probably pointing people back to your current app and want
      https on that too.
      f0a3af20
  6. 12 8月, 2015 1 次提交
  7. 09 6月, 2015 1 次提交
  8. 02 6月, 2015 1 次提交
  9. 18 5月, 2015 1 次提交
  10. 28 4月, 2015 2 次提交
  11. 13 4月, 2015 1 次提交
  12. 16 3月, 2015 1 次提交
  13. 25 2月, 2015 1 次提交
  14. 31 1月, 2015 1 次提交
    • C
      ActionMailer::Base can unregister interceptor(s). · ff5fcf65
      Claudio Ortolina 提交于
      One or multiple mail interceptors can be unregistered using
      `ActionMailer::Base.unregister_interceptors` or
      `ActionMailer::Base.unregister_interceptor`.
      
      For preview interceptors, it's possible to use
      `ActionMailer::Base.unregister_preview_interceptors` or
      `ActionMailer::Base.unregister_preview_interceptor`.
      
      Refactors logic to constantize a string/symbol into separate method.
      ff5fcf65
  15. 15 1月, 2015 1 次提交
  16. 30 12月, 2014 1 次提交
    • R
      Template lookup now respect default locale and I18n fallbacks. · ecb1981b
      Rafael Mendonça França 提交于
      Given the following templates:
      
          mailer/demo.html.erb
          mailer/demo.en.html.erb
          mailer/demo.pt.html.erb
      
      Before this change for a locale that doesn't have its related file
      the `mailer/demo.html.erb` will
      be rendered even if `en` is the default locale.
      
      Now `mailer/demo.en.html.erb` has precedence over the file without
       locale.
      
      Also, it is possible to give a fallback.
      
          mailer/demo.pt.html.erb
          mailer/demo.pt-BR.html.erb
      
      So if the locale is `pt-PT`, `mailer/demo.pt.html.erb` will be
       rendered given the right I18n fallback configuration.
      
      Fixes #11884.
      ecb1981b
  17. 18 12月, 2014 1 次提交
  18. 02 12月, 2014 1 次提交
  19. 30 11月, 2014 1 次提交
  20. 29 11月, 2014 1 次提交
  21. 25 11月, 2014 1 次提交
  22. 27 10月, 2014 1 次提交
  23. 19 10月, 2014 2 次提交
  24. 22 9月, 2014 1 次提交
  25. 22 8月, 2014 1 次提交
  26. 21 8月, 2014 1 次提交