houdini/app/views/admin_mailer/notify_failed_gift.html.erb
2020-06-15 10:26:57 -05:00

25 lines
No EOL
789 B
Text

<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
<p>Dear admin,</p>
<p>The following donation was tried to be associated with a campaign gift option. You SHOULD refund the donation
as there are no other gifts available:</p>
<%= render 'donation_mailer/donation_payment_table', donation: @donation, charge: @donation.charges.last %>
<p> The associated gift was for:</p>
<table>
<tr>
<td>Name:</td>
<td><%=@campaign_gift_option.name%></td>
</tr>
<tr>
<td>Description:</td>
<td><%=@campaign_gift_option.description.nil? ? '' : @campaign_gift_option.description%></td>
</tr>
<tr>
<td>Id:</td>
<td><%=@campaign_gift_option.id%></td>
</tr>
</table>