diff options
Diffstat (limited to 'classes/Mailer.php')
-rw-r--r-- | classes/Mailer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Mailer.php b/classes/Mailer.php index 33068b7..f95addc 100644 --- a/classes/Mailer.php +++ b/classes/Mailer.php @@ -95,7 +95,7 @@ class Mailer extends PHPMailer { return false; } - BusinessAdmin::createMail($this->pdo, $this->contactId, $this->offerId, $this->Subject); + Mail::create($this->pdo, [$this->contactId, $this->offerId, $this->Subject]); return true; } |