mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-22 14:15:22 +00:00
17 lines
975 B
Plaintext
17 lines
975 B
Plaintext
= content_for :heading do
|
|
= render 'application/mailer/heading',
|
|
image_url: frontend_asset_url('images/mailer-new/heading/mention.png'),
|
|
subtitle: t('notification_mailer.mention.body', name: @status.account.pretty_acct),
|
|
title: t('notification_mailer.mention.title')
|
|
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
|
%tr
|
|
%td.email-body-padding-td
|
|
%table.email-inner-card-table{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
|
%tr
|
|
%td.email-inner-card-td
|
|
= render 'status', status: @status, time_zone: @me.user_time_zone
|
|
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
|
%tr
|
|
%td.email-padding-top-24
|
|
= render 'application/mailer/button', text: t('notification_mailer.mention.action'), url: web_url("@#{@status.account.pretty_acct}/#{@status.id}")
|