remove html escaping from all text mails
This commit is contained in:
parent
8913ad615c
commit
0b08d461fa
6 changed files with 12 additions and 12 deletions
|
@ -1,3 +1,3 @@
|
|||
= t '.header', user: show_user(@user), date: I18n.l(Time.now, :format => :short)
|
||||
= raw t '.header', user: show_user(@user), date: I18n.l(Time.now, :format => :short)
|
||||
\
|
||||
= @feedback
|
||||
= raw @feedback
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
= t '.text', user: @invite.user.name, mail: @invite.user.email, group: @invite.group.name, link: @link, expires: I18n.l(@invite.expires_at)
|
||||
= raw t '.text', user: @invite.user.name, mail: @invite.user.email, group: @invite.group.name, link: @link, expires: I18n.l(@invite.expires_at)
|
||||
-# append english text only if the locale is not english
|
||||
- if not I18n.locale.to_s.start_with?('en')
|
||||
=======
|
||||
\
|
||||
= t '.text', user: @invite.user.name, mail: @invite.user.email, group: @invite.group.name, link: @link, expires: I18n.l(@invite.expires_at, locale: :en), locale: :en
|
||||
= raw t '.text', user: @invite.user.name, mail: @invite.user.email, group: @invite.group.name, link: @link, expires: I18n.l(@invite.expires_at, locale: :en), locale: :en
|
||||
|
|
|
@ -1 +1 @@
|
|||
= raw t '.text', group: h(@group.name), when: format_time(@transaction.created_on), balance: number_to_currency(@group.account_balance), amount: number_to_currency(@transaction.amount), note: h(@transaction.note), user: h(show_user(@transaction.user)), foodcoop: h(FoodsoftConfig[:name])
|
||||
= raw t '.text', group: @group.name, when: format_time(@transaction.created_on), balance: number_to_currency(@group.account_balance), amount: number_to_currency(@transaction.amount), note: @transaction.note, user: show_user(@transaction.user), foodcoop: FoodsoftConfig[:name]
|
||||
|
|
|
@ -1 +1 @@
|
|||
= t '.text', user: @user.first_name, task: @task.name, when: I18n.l(@task.due_date, format: t('mailer.dateformat')), workgroup_tasks_url: workgroup_tasks_url(workgroup_id: task.workgroup_id), user_tasks_url: user_tasks_url
|
||||
= raw t '.text', user: @user.first_name, task: @task.name, when: I18n.l(@task.due_date, format: t('mailer.dateformat')), workgroup_tasks_url: workgroup_tasks_url(workgroup_id: task.workgroup_id), user_tasks_url: user_tasks_url
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
= t '.text0', user: @user.name, task: @task.name, when: I18n.l(@task.due_date, format: t('mailer.dateformat'))
|
||||
= raw t '.text0', user: @user.name, task: @task.name, when: I18n.l(@task.due_date, format: t('mailer.dateformat'))
|
||||
- if @user.next_tasks.size > 0
|
||||
= t '.nextweek'
|
||||
= raw t '.nextweek'
|
||||
- for next_task in @user.next_tasks
|
||||
- next if next_task == @task
|
||||
* #{I18n.l next_task.due_date, format: t('mailer.dateformat')} #{next_task.name}
|
||||
= t '.text1', user_tasks_url: user_tasks_url, foodcoop: FoodsoftConfig[:name]
|
||||
* #{raw I18n.l next_task.due_date, format: t('mailer.dateformat')} #{raw next_task.name}
|
||||
= raw t '.text1', user_tasks_url: user_tasks_url, foodcoop: FoodsoftConfig[:name]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
= @message.body
|
||||
= raw @message.body
|
||||
======================================================================
|
||||
\
|
||||
= t '.footer', reply_url: new_message_url('message[reply_to]' => @message.id), msg_url: message_url(@message), profile_url: my_profile_url
|
||||
= raw t '.footer', reply_url: new_message_url('message[reply_to]' => @message.id), msg_url: message_url(@message), profile_url: my_profile_url
|
||||
|
|
Loading…
Reference in a new issue