diff --git a/services/web/app/coffee/Features/Subscription/SubscriptionHandler.coffee b/services/web/app/coffee/Features/Subscription/SubscriptionHandler.coffee index c74e20a39e..105a9a4a0d 100644 --- a/services/web/app/coffee/Features/Subscription/SubscriptionHandler.coffee +++ b/services/web/app/coffee/Features/Subscription/SubscriptionHandler.coffee @@ -46,7 +46,9 @@ module.exports = emailOpts = to: user.email first_name: user.first_name - EmailHandler.sendEmail "canceledSubscription", emailOpts + ONE_HOUR_IN_MS = 1000 * 60 * 60 + setTimeout (-> EmailHandler.sendEmail "canceledSubscription", emailOpts + ), ONE_HOUR_IN_MS callback() else callback()