diff --git a/app/Models/Account.php b/app/Models/Account.php index 266803400456..b88ad09b3ac9 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -550,7 +550,7 @@ class Account extends BaseModel $limit += Carbon::createFromTimestamp($this->created_at)->diffInMonths() * 50; } else { $limit = $this->free_plan_email_quota; - $limit += Carbon::createFromTimestamp($this->created_at)->diffInMonths() * 10; + $limit += Carbon::createFromTimestamp($this->created_at)->diffInMonths() * 3; } return min($limit, 5000);