10 lines
628 B
Text
10 lines
628 B
Text
= content_for :footer do
|
|
%tr.footer
|
|
%td
|
|
%img.footer-logo{ alt: "GitLab", src: image_url('mailers/gitlab_footer_logo.gif') }
|
|
%div
|
|
- manage_notifications_link = link_to(_("Manage all notifications"), profile_notifications_url, class: 'mng-notif-link')
|
|
- help_link = link_to(_("Help"), help_url, class: 'help-link')
|
|
= _("You're receiving this email because of your account on %{host}. %{manage_notifications_link} · %{help_link}").html_safe % { host: Gitlab.config.gitlab.host, manage_notifications_link: manage_notifications_link, help_link: help_link }
|
|
|
|
= render 'layouts/mailer'
|