Update status reaction emails

This commit is contained in:
Essem 2024-12-18 15:40:30 -06:00 committed by Jeremy Kescher
parent 33321d5448
commit 3e39b7b6ad
No known key found for this signature in database
GPG key ID: 80A419A7A613DFA4
3 changed files with 5 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -1,5 +1,8 @@
= content_for :heading do
= render 'application/mailer/heading', heading_title: t('notification_mailer.reaction.title'), heading_subtitle: t('notification_mailer.reaction.body', name: @account.pretty_acct), heading_image_url: frontend_asset_url('images/mailer-new/heading/reaction.png')
= render 'application/mailer/heading',
image_url: frontend_asset_url('images/mailer-new/heading/reaction.png'),
subtitle: t('notification_mailer.reaction.body', name: @status.account.pretty_acct),
title: t('notification_mailer.reaction.title')
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
%tr
%td.email-body-padding-td

View file

@ -1,5 +1,5 @@
<%= raw t('application_mailer.salutation', name: display_name(@me)) %>
<%= raw t('notification_mailer.reaction.body', name: @account.pretty_acct) %>
<%= raw t('notification_mailer.reaction.body', name: @status.account.pretty_acct) %>
<%= render 'status', status: @status %>