Camunda-bpm-mail plugin will be supported in listeners?

I was able to send email through the community extension camunda/camunda-bpm-mail in SendTask activity.

Will the same email connector will be supported to configure in ExecutionListener or TaskListener?

Connector-id attribute is not found in neither ExecutionListener nor TaskListener to configure in bpmn model. Is there anyway to achieve it?

No - at least not directly. The extension is built on top of Camunda connect. However, you can try to invoke the connector manually in the listener. For example:

MailConnectors.sendMail()
      .createRequest()
        .from("test")
        .fromAlias("me")
        .to("test@camunda.com")
        .subject("subject")
      .execute();

@Philipp_Ossler thanks for the suggestion. will try it :slight_smile: