2019-04-20 12:42:19 +00:00
|
|
|
<h1>Hey <%= @user.nickname %>, here is what you've missed!</h1>
|
|
|
|
|
|
|
|
<h2>New Mentions:</h2>
|
|
|
|
<ul>
|
2019-06-03 23:48:21 +00:00
|
|
|
<%= for %{data: mention, object: object, from: from} <- @mentions do %>
|
|
|
|
<li><%= link from.nickname, to: mention.activity.actor %>: <%= raw object.data["content"] %></li>
|
2019-04-20 12:42:19 +00:00
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<%= if @followers != [] do %>
|
|
|
|
<h2><%= length(@followers) %> New Followers:</h2>
|
|
|
|
<ul>
|
|
|
|
<%= for %{data: follow, from: from} <- @followers do %>
|
|
|
|
<li><%= link from.nickname, to: follow.activity.actor %></li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<p>You have received this email because you have signed up to receive digest emails from <b><%= @instance %></b> Pleroma instance.</p>
|
|
|
|
<p>The email address you are subscribed as is <%= @user.email %>. To unsubscribe, please go <%= link "here", to: @unsubscribe_link %>.</p>
|