X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fmailer%2Fdebug%2Fclass_DebugMailer.php;h=3a37c02aa60d7e8b17e27d5ac58f397b64285426;hp=a22a0ba213b1192e7437a2362d3fb6027765ef92;hb=ba2d7c9ae0a285d675ffba6442ac2f1a00feb332;hpb=ec6bb7da038135934f0d5abfcb82a7a7780945a4 diff --git a/inc/classes/main/mailer/debug/class_DebugMailer.php b/inc/classes/main/mailer/debug/class_DebugMailer.php index a22a0ba2..3a37c02a 100644 --- a/inc/classes/main/mailer/debug/class_DebugMailer.php +++ b/inc/classes/main/mailer/debug/class_DebugMailer.php @@ -3,11 +3,11 @@ * A mailer class for debugging purposes only. This class will print the * prepared mail out and will not send it to the recipient. * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -52,7 +52,7 @@ class DebugMailer extends BaseMailer implements DeliverableMail { $mailerInstance->setApplicationInstance($applicationInstance); // Set template name - $mailerInstance->setTemplateName('resend_link'); + $mailerInstance->setTemplateName($templateName); // Return the instance return $mailerInstance; @@ -76,7 +76,7 @@ class DebugMailer extends BaseMailer implements DeliverableMail { if (!$recipientInstance instanceof ManageableMember) { // Invalid entry found! throw new InvalidInterfaceException(array($this, 'ManageableMember'), self::EXCEPTION_REQUIRED_INTERFACE_MISSING); - } + } // END - if // User class found, so entry is valid, first load the template $this->loadTemplate($templateName); @@ -112,7 +112,7 @@ class DebugMailer extends BaseMailer implements DeliverableMail { $responseInstance = $this->getApplicationInstance()->getResponseInstance(); // Transfer the data to the response - $this->getTemplateInstance()->transferToResponse($responseInstance); + $templateInstance->transferToResponse($responseInstance); } // END - foreach } // END - foreach } @@ -147,7 +147,7 @@ class DebugMailer extends BaseMailer implements DeliverableMail { $templateInstance->compileTemplate(); // Assign this template with variable - $templateInstance->assignTemplateWithVariable('mail_debug', 'content'); + $templateInstance->assignTemplateWithVariable('mail_debug', 'main_content'); // Load header template $templateInstance->loadCodeTemplate('header');