diff --git a/ghost/stripe/lib/StripeAPI.js b/ghost/stripe/lib/StripeAPI.js index 34caa99bb2..1b2b2c5b39 100644 --- a/ghost/stripe/lib/StripeAPI.js +++ b/ghost/stripe/lib/StripeAPI.js @@ -519,7 +519,7 @@ module.exports = class StripeAPI { }, metadata, customer: customer ? customer.id : undefined, - customer_email: customer ? undefined : customerEmail, + customer_email: !customer && customerEmail ? customerEmail : undefined, submit_type: 'donate', invoice_creation: { enabled: true,