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();