]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/mailer/debug/class_DebugMailer.php
Some fixes.
[core.git] / inc / classes / main / mailer / debug / class_DebugMailer.php
index ccd3022aaba8e098af33a838abe1b6871cfeb911..a3e1fa13bcf497a01fb91a1c6eebafe4101b297f 100644 (file)
@@ -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 <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 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
        }