I'm using helpers inside mailer views and this it works fine: ``` class UserMailer < Devise::Mailer helper :home helper :post . . . end ``` However, I need to use [truncate_html](https://github.com/hgmnz/truncate_html) gem inside mailer views How can I add this helper to mailer views? Thanks