Profile Canceled Email

Kat_dev
Contributor
Contributor

When a customer makes a purchases a subscription and uses their credit card and not a paypal account, they are getting 3 emails.

The first says Profile Canceled and has the details of the transaction and the date listed as the start date and the end date.

The next email says "You sent an automated payment of XXX USD"

The third says "You set up an automatic payment profile to My Company" and the email inside says that the payment date is the start date and the billing cycle is 12 months.

I can't figure out why they are getting that first email sent automatically.  Here is some of the HTML variables I am supplying to Paypal:

<input type="hidden" name="a3" value="1">

<input type="hidden" name="p3" value="12">

<input type="hidden" name="t3" value="M"> 

Login to Me Too
1 ACCEPTED SOLUTION

Accepted Solutions
Solved

Kat_dev
Contributor
Contributor

I figured out my own issue... I needed to adjust the code to this:

  <input type="hidden" name="a3" value="1">  
  <input type="hidden" name="p3" value="1"> 
 <input type="hidden" name="t3" value="M"> 
 <input type="hidden" name="src" value="1">
<input type="hidden" name="srt" value="12">
<input type="hidden" name="sra" value="1">

View solution in original post

Login to Me Too
1 REPLY 1
Solved

Kat_dev
Contributor
Contributor

I figured out my own issue... I needed to adjust the code to this:

  <input type="hidden" name="a3" value="1">  
  <input type="hidden" name="p3" value="1"> 
 <input type="hidden" name="t3" value="M"> 
 <input type="hidden" name="src" value="1">
<input type="hidden" name="srt" value="12">
<input type="hidden" name="sra" value="1">

Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.