From 08d7347f00477fb961040e364b4259697d2e24e6 Mon Sep 17 00:00:00 2001 From: Mike Koch Date: Sun, 19 Feb 2017 22:04:47 -0500 Subject: [PATCH] Small tweaks --- api/BusinessLogic/Emails/MailgunEmailSender.php | 2 -- .../BusinessLogic/Emails/BasicEmailSenderIntegrationTest.php | 1 - .../BusinessLogic/Emails/MailgunEmailSenderIntegrationTest.php | 1 - 3 files changed, 4 deletions(-) diff --git a/api/BusinessLogic/Emails/MailgunEmailSender.php b/api/BusinessLogic/Emails/MailgunEmailSender.php index 58c53e4e..2d290094 100644 --- a/api/BusinessLogic/Emails/MailgunEmailSender.php +++ b/api/BusinessLogic/Emails/MailgunEmailSender.php @@ -43,8 +43,6 @@ class MailgunEmailSender implements EmailSender { } } - var_dump($mailgunArray); - $result = $this->sendMessage($mailgunArray, $mailgunAttachments, $modsForHeskSettings); diff --git a/api/Tests/BusinessLogic/Emails/BasicEmailSenderIntegrationTest.php b/api/Tests/BusinessLogic/Emails/BasicEmailSenderIntegrationTest.php index 4c946738..a3feb1a8 100644 --- a/api/Tests/BusinessLogic/Emails/BasicEmailSenderIntegrationTest.php +++ b/api/Tests/BusinessLogic/Emails/BasicEmailSenderIntegrationTest.php @@ -60,7 +60,6 @@ class BasicEmailSenderIntegrationTest extends IntegrationTestCaseBase { $emailBuilder->htmlMessage = "Test HTML message"; $emailBuilder->subject = "BasicEmailSenderIntegrationTest"; - // Uncomment to test attachments. $attachment = new Attachment(); $attachment->id = 1; $attachment->fileName = "file.txt"; diff --git a/api/Tests/BusinessLogic/Emails/MailgunEmailSenderIntegrationTest.php b/api/Tests/BusinessLogic/Emails/MailgunEmailSenderIntegrationTest.php index 1a5d5ec3..86948697 100644 --- a/api/Tests/BusinessLogic/Emails/MailgunEmailSenderIntegrationTest.php +++ b/api/Tests/BusinessLogic/Emails/MailgunEmailSenderIntegrationTest.php @@ -59,7 +59,6 @@ class MailgunEmailSenderIntegrationTest extends IntegrationTestCaseBase { $emailBuilder->htmlMessage = "Test HTML message"; $emailBuilder->subject = "MailgunEmailSenderIntegrationTest"; - // Uncomment to test attachments. $attachment = new Attachment(); $attachment->id = 1; $attachment->fileName = "file.txt";