2021-01-19 16:47:51 +01:00
|
|
|
<%= render 'notifications_mailer/shared/hello', recipient: @recipient %>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= _t('.body.please_find_attached_html',
|
|
|
|
{
|
|
|
|
DATE: I18n.l(@attached_object.created_at.to_date),
|
|
|
|
AMOUNT: number_to_currency(@attached_object.total / 100.0),
|
2021-06-02 20:07:53 +02:00
|
|
|
TYPE: @attached_object.main_object.object_type
|
2021-01-19 16:47:51 +01:00
|
|
|
})
|
|
|
|
# messageFormat
|
|
|
|
%>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p><%= t('.body.schedule_in_your_dashboard_html',
|
|
|
|
DASHBOARD: link_to(
|
|
|
|
t('.body.your_dashboard'),
|
2021-02-09 17:18:33 +01:00
|
|
|
"#{root_url}#!/dashboard/payment_schedules"
|
2021-01-19 16:47:51 +01:00
|
|
|
)
|
|
|
|
) %>
|
|
|
|
</p>
|