Skip to content

Instantly share code, notes, and snippets.

@dpickett
Created October 6, 2008 20:44
Show Gist options
  • Save dpickett/15139 to your computer and use it in GitHub Desktop.
Save dpickett/15139 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Payment Sent</title>
</head>
<body>
<%= automated_line %>
<p>Hi <%= @contact_information.display_name %>,</p>
<p>
Hooray! We sent you the <%= number_to_currency(@trade_in.active_payout_item.amount) if @trade_in.active_payout_item %> for your
<%= @trade_in.product.get_headline %> via <%= @payout.payment_information.payout_type.name %>
today.
</p>
<%- if @payout.payment_information.instance_of?(CheckInformation) -%>
<p>Please allow a few days for the U.S. Postal Service to deliver. If you have questions,check out our help section. </p>
<%- end -%>
<p><strong>WAS IT GOOD FOR YOU TOO?</strong></p>
<p>
We want everyone who uses Gazelle to let us know what he or she thinks of our service.
The good, and the bad. That’s the only way we can improve. Please take a minute to answer this
very short (one-question) <%= link_to("survey", @rating_url) %>.
</p>
<p>Thanks again for using Gazelle!</p>
<p>
The Gazelle Team<br />
www.gazelle.com
</p>
<p>
***
<br />
<strong>GET PAID FOR BEING SMART</strong>
<br />
Have you heard of the Gazelle and Tell Referral program? Bring us a new customer, and we’ll pay
you $10 when they sell us their first $50.
<br />
<%= link_to("Start Today!", @referral_url) %>
<br />
***
</p>
<%= render :partial => 'user_notifier/about_and_default_footer', :locals => {:email => @email} %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment