As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Hey Pete- Are you putting this in After Save in your BL code? Try the sample code at http://devcenter.kinvey.com/rest/guides/business-logic#Triggeringemailnotifications and see if that is working.
[
[Deleted User]
said
almost 10 years ago
Hi Caroline,
The code was in the PreSave collection hook, but it appears it will only work in PostSave.
[Deleted User]
logger.info('sending confirmation email to: '+request.body.email);
email.send('noreply@comain.co.uk', request.body.email, 'Booking Confirmation', 'Confirmation for booking '+request.body._id);
logger.info('sent confirmation email to: '+request.body.email);
I can see the log statements, but I never receive the email.
Does this feature work?
Does it require extra setup?
Thanks