XF 2.2 Limit cron entry for emails sent per hr/day?

LenKaiser

Active member
Is there a way to limit how many emails is sent out from the forum in one day without signing up for a costly subscription service or something like MailChimp? I want to do this from the XF ACP I don't want to deal with a service or paying extra for one. I need to limit my sending to 500 an hour and only 1000 a day.
 
You can add
PHP:
$config['enableMail'] = false
to config.php, this will limit the mails that are being sent to 0.

Other than that it is not possible to limit the amount of mails sent to X per Y (without 3rd Party Add-ons).
 
Last edited:
Is there a way to limit how many emails is sent out from the forum in one day
Edit your templates and disable all options for email notifications.
You could also turn off registration email verification.
Ensure Activity Summary emails are inactive.
Then you'd probably only have password reset emails.
 
Edit your templates and disable all options for email notifications.
You could also turn off registration email verification.
Ensure Activity Summary emails are inactive.
Then you'd probably only have password reset emails.
Where do I find the setting to disable notifications globally?
 
Top Bottom