Thank you, Larry, for your online resource explaining the process of making a charge through Stripe. It was very thorough and super helpful.
Using the following code to create the charge object:
$charge = Stripe_Charge::create(array(
"amount" => $amount,
"currency" => "usd",
"card" => $token,
"description" => $email
)
);
I'm using the 'description' key to provide the email address, but when trying to setup email receipts within the Stripe dashboard, does Stripe know to send the receipt to the email found in the 'description'? If not, what can I do differently?