From f6550555b0e019506bb48e95dac6bec49f983f4f Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Tue, 7 Feb 2017 22:48:15 -0800 Subject: [PATCH] Templates for tip emails --- views/templates/email/tip_received.erb | 18 ++++++++++++++++++ views/templates/email/tip_sent.erb | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 views/templates/email/tip_received.erb create mode 100644 views/templates/email/tip_sent.erb diff --git a/views/templates/email/tip_received.erb b/views/templates/email/tip_received.erb new file mode 100644 index 00000000..8eb606f3 --- /dev/null +++ b/views/templates/email/tip_received.erb @@ -0,0 +1,18 @@ +<% if @tip.actioning_site %> +You have received a <%= @tip.amount_string %> tip from <%= @tip.actioning_site.username %> (<%= @tip.actioning_site.uri %>)! +<% else %> +You have received a <%= @tip.amount_string %> tip! +<% end %> It has been deposited into your Paypal account (<%= @tip.paypal_receiver_email %>). + +You can see the tip on your site profile at https://neocities.org/site/<%= @tip.site.username %> + +Neocities doesn't take a cut of the tips sent to sites. Almost all of the donation (minus any transaction fees) will go directly to you. + +<% if @tip.site.supporter? %> +Lastly, thank you very much for being a supporter! You help makes this possible. +<% else %> +We fund Neocities through supporter accounts. If you're feeling tipsy yourself, consider signing up to be a Neocities supporter: https://neocities.org/supporter +<% end %> + +Cheers! +The Neocities Team diff --git a/views/templates/email/tip_sent.erb b/views/templates/email/tip_sent.erb new file mode 100644 index 00000000..3eecaeb5 --- /dev/null +++ b/views/templates/email/tip_sent.erb @@ -0,0 +1,18 @@ +You are awesome! You just sent a <%= @tip.amount_string %> tip to <%= @tip.site.username %> (<%= @tip.site.uri %>)! + +Neocities doesn't take a cut of the tips sent to sites. Almost all of your donation (minus any transaction fees) will go directly to the site itself! + +You can see the tip on your site profile at https://neocities.org/site/<%= @tip.site.username %> + +When you tip sites on Neocities, you help them to continue to build awesome stuff. On behalf of all the great sites on Neocities, thank you! + +If you're feeling tipsy, there's a lot of other great sites on Neocities! Check them all out at https://neocities.org/browse. + +<% if @tip.actioning_site && @tip.actioning_site.supporter? %> +Lastly, thank you very much for being a supporter! You help makes this possible. +<% else %> +Also, we fund Neocities through supporter accounts. Consider signing up to be a Neocities supporter! https://neocities.org/supporter +<% end %> + +Cheers! +The Neocities Team