Limit of number of notification emails sended per single event.

Julian Piovesa1
Tera Contributor

Hi everyone
I have a question regarding the limit of recipients (copy and no-copy) for the email notifications triggered by an event that is executed by a scheduled job.

I saw that the limit will be of 200 Emails Notifications sended by the same envet fired. Is that number right? Is there any System Property or any way to change that behavior? Because I need to increase that amount of notifications.

Thanks, Julian


1 ACCEPTED SOLUTION

Filipe Cruz
Kilo Sage
Kilo Sage

Hello Julian,

The property that defines that is glide.email.smtp.max_recipients

glide.email.smtp.max_recipients
Specifies the maximum number of recipients the instance can list in the To: line for a single email notification. Notifications that would exceed this limit instead create duplicate email notifications addressed to a subset of the recipient list. Each email notification has the same maximum number of recipients.
Type: integer
Default value: 100

 

By default, this property does not exist, so the system assumes the default value of 100 for the max number of recipients in one email, like in this example:

find_real_file.png

If you want to change this, you can create the property as integer and set the value.

You can check more information here:
Additional Properties

Please, don't forget to mark my answer as correct if it solves your issue or mark it as helpful if it is relevant for you!

Best Regards,

Filipe Cruz

 

View solution in original post

2 REPLIES 2

Filipe Cruz
Kilo Sage
Kilo Sage

Hello Julian,

The property that defines that is glide.email.smtp.max_recipients

glide.email.smtp.max_recipients
Specifies the maximum number of recipients the instance can list in the To: line for a single email notification. Notifications that would exceed this limit instead create duplicate email notifications addressed to a subset of the recipient list. Each email notification has the same maximum number of recipients.
Type: integer
Default value: 100

 

By default, this property does not exist, so the system assumes the default value of 100 for the max number of recipients in one email, like in this example:

find_real_file.png

If you want to change this, you can create the property as integer and set the value.

You can check more information here:
Additional Properties

Please, don't forget to mark my answer as correct if it solves your issue or mark it as helpful if it is relevant for you!

Best Regards,

Filipe Cruz

 

Thanks a lot Filipe for this information, this was very helpful regarding to my development!