2017-07-31 00:18:44 +02:00
|
|
|
<%= raw t('application_mailer.salutation', name: display_name(@me)) %>
|
2017-03-03 23:45:48 +01:00
|
|
|
|
2019-01-02 10:47:32 +01:00
|
|
|
<%= raw t('notification_mailer.digest.body', since: l(@me.user_current_sign_in_at || @since), instance: root_url) %>
|
2017-03-03 23:45:48 +01:00
|
|
|
<% @notifications.each do |notification| %>
|
|
|
|
|
2022-03-22 10:07:11 +01:00
|
|
|
* <%= raw t('notification_mailer.digest.mention', name: notification.from_account.pretty_acct) %>
|
2017-03-03 23:45:48 +01:00
|
|
|
|
2022-03-28 01:17:17 +02:00
|
|
|
<%= raw extract_status_plain_text(notification.target_status) %>
|
2017-03-03 23:45:48 +01:00
|
|
|
|
|
|
|
<%= raw t('application_mailer.view')%> <%= web_url("statuses/#{notification.target_status.id}") %>
|
|
|
|
<% end %>
|
|
|
|
<% if @follows_since > 0 %>
|
|
|
|
|
|
|
|
<%= raw t('notification_mailer.digest.new_followers_summary', count: @follows_since) %>
|
|
|
|
<% end %>
|