Alert as email

Hi All,

Does Camunda supports any sort of in-built email alerts mechanism?

I am working BPMN that implements external tasks, but if the external task (c# Console app) fails with error, I should be able to capture it on BPMN and sends alert as email.

Thanks,
Vikas Yadav

Hi @Vikas_Yadav,

have a look at this community extension: https://github.com/camunda/camunda-bpm-mail

You can either connect the send tasks with boundary events to your failing services
or maybe you can combine it with a custom incident handler: https://docs.camunda.org/manual/7.9/user-guide/process-engine/incidents/#implement-custom-incident-handlers

Hope this helps,

Ingo

Thank you!