문제

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