Auto Return is enabled, donations are getting posted, but user has to click yellow "Return To Coordinator" button to come back. Anything you see wrong with this snippet, please let me know..
P.S. I don't want to user custom buttons.
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="[email protected]">
<!-- Specify a Donate button. -->
<input type="hidden" name="cmd" value="_donations">
<!-- Specify details about the contribution -->
<input type="hidden" name="item_name" value="@Resources.Donations.Strings.ThankYou">
<input type="hidden" name="return" value="http://www.return.com/thankyou"/>
<input type="hidden" name="cancel_return" value="http://www.return.com/cancel"/>
<input type="hidden" name="rm" value="2"/>
<input type="hidden" name="item_number" value="5.00">
<select name="amount" onchange="$('input[name=item_number]').val($(this).val())">
<option value="1.00">$1.00</option>
<option value="5.00" selected>$5.00</option>
<option value="10.00">$10.00</option>
<option value="15.00">$15.00</option>
<option value="25.00">$25.00</option>
<option value="50.00">$50.00</option>
<option value="">@Resources.Donations.Labels.Other</option>
</select>
<input type="hidden" name="currency_code" value="USD">
<!-- Display the payment button. -->
<button type="submit" name="submit" class="btn btn-large btn-paypal"></button>
</form>
As Andrew suggested, I refactored my code to use IPN. Here's some code I started with.. This is some code with logging that can get you started..
HTML form:
IPN handler sample:
And here's the PayPalModel with variable names: