How to send the Pin to the particular user via mail?

Hi Developer,
I am working on jdbc source the requirement is after account creation in jdbc. We need to send the Pin via mail to the particular user whose account is created in jdbc source.
How we can achieve please help me out.

Thank you!

For every Source, when an account is created, you can send email notification.

It uses OOTB email template: New Account Provisioned

You can enable by adding below JSON to the source config

"accountCreateNotification": {
            "accountUserName": "sAMAccountName",
            "notifyAccountManager": false,
            "notifyList": null,
            "notifyAccountOwner": true,
            "enabled": true,
            "notifyAccountOwnerAltEmail": false
        }

Hi @KRM7
But how i can pass the only random generated pin. which is generated while creating the account in the source by using custom transform in plan.

How we can pass this attribute in email template: New Account Provisioned

Hi @Abhishek_1995,

You can also consider making use of a workflow to achieve the use-case.

Use the provisioning completed trigger to detect the JDBC account creation, then send out the email with the required attributes.

Hi @jesvin90

could you please provide me the solution and the steps so that i can perform the operation.

Hi Developer,
can any one please help me out on this. I will be very thankful.

Hi @Abhishek_1995,

Here is a sample WF you may want to try. Make sure to change the details as per your tenant values.

JDBCAccountcreated20250224.json (1.5 KB)

Hi @jesvin90,

Thank you for your help. Your given WF was working for me! :slightly_smiling_face: