Default the Stripe SEPA module has been configured to let STRIPE sent an email to the customer to alert them a collection has been started.
It would be great if this can be disabled so we can send an email out of WHMCS itself, so the customer does not get 2 emails about the same transaction.
Changes in STRIPE_SEPA.JS:
mandate: {
// Automatically send a mandate notification email to your customer
// once the source is charged.
notification_method: 'email',
}
to:
mandate: {
// Automatically send a mandate notification email to your customer
// once the source is charged.
notification_method: 'none',
}
1 Comment
Login to post a comment.