I've ran into another problem while outsourcing some notification logic to observers.

Is it possible to use simple_format inside of an observer?

I need it to transform text from database and strings from I18n.t into nice looking emails.

有帮助吗?

解决方案

I found the solution by myself. Just include the TextHelper-Module at the start of the file to use helpers like simple_format:

include ActionView::Helpers::TextHelper
class SystemmailerObserver < ActiveRecord::Observer
  [...]
end
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top