Increase max email limit

This commit is contained in:
Hillel Coren 2018-05-02 12:29:12 +03:00
parent fcec465b37
commit 532a10a915

View File

@ -211,6 +211,6 @@ trait SendsEmails
$limit += $this->created_at->diffInMonths() * 100; $limit += $this->created_at->diffInMonths() * 100;
return min($limit, 1000); return min($limit, 2000);
} }
} }