do not send stripe receipt

This commit is contained in:
Joerg Lehmann 2021-04-13 17:18:49 +02:00
parent 33a8d57057
commit 79404a50da
1 changed files with 2 additions and 3 deletions

View File

@ -53,8 +53,7 @@ func getstripepaymentintentHandler(response http.ResponseWriter, request *http.R
params := &stripe.PaymentIntentParams{ params := &stripe.PaymentIntentParams{
Amount: stripe.Int64(abo_amount), Amount: stripe.Int64(abo_amount),
Currency: stripe.String(string(stripe.CurrencyCHF)), Currency: stripe.String(string(stripe.CurrencyCHF))
ReceiptEmail: stripe.String(name),
} }
params.AddMetadata("charge_data", charge_data[0]) params.AddMetadata("charge_data", charge_data[0])
params.AddMetadata("login_user", name) params.AddMetadata("login_user", name)
@ -121,7 +120,7 @@ func stripeWebhookHandler(w http.ResponseWriter, req *http.Request) {
return return
} }
fmt.Printf("PaymentIntent was successful (charge_data: %s, amount: %d)!\n", paymentIntent.Metadata["charge_data"], paymentIntent.Amount) fmt.Printf("PaymentIntent was successful (charge_data: %s, amount: %d)!\n", paymentIntent.Metadata["charge_data"], paymentIntent.Amount)
HandlePayment(paymentIntent.ReceiptEmail, paymentIntent.Metadata["charge_data"], paymentIntent.Amount) HandlePayment(paymentIntent.Metadata["login_user"], paymentIntent.Metadata["charge_data"], paymentIntent.Amount)
// ... handle other event types // ... handle other event types
default: default:
fmt.Fprintf(os.Stderr, "Unexpected event type: %s\n", event.Type) fmt.Fprintf(os.Stderr, "Unexpected event type: %s\n", event.Type)