From df35c79bc291829468c7e0894461ad22dc3fd0f9 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Fri, 20 Oct 2023 16:56:34 +0400 Subject: [PATCH] chore: remove var_dumps --- src/Appwrite/Platform/Workers/Mails.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Appwrite/Platform/Workers/Mails.php b/src/Appwrite/Platform/Workers/Mails.php index fa8899b5a7..6591127592 100644 --- a/src/Appwrite/Platform/Workers/Mails.php +++ b/src/Appwrite/Platform/Workers/Mails.php @@ -70,8 +70,6 @@ class Mails extends Action $mail = empty($smtp) ? $register->get('smtp') : $this->getMailer($smtp); - var_dump("mail="); - var_dump($mail); $mail->clearAddresses(); $mail->clearAllRecipients(); $mail->clearReplyTos(); @@ -97,9 +95,6 @@ class Mails extends Action */ protected function getMailer(array $smtp): PHPMailer { - var_dump("smtp="); - var_dump($smtp); - $mail = new PHPMailer(true); $mail->isSMTP();