Browse Source

Remove redundant call to `Email::profile()`

Jad Bitar 11 years ago
parent
commit
4e4d9a30b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Mailer/Mailer.php

+ 1 - 1
src/Mailer/Mailer.php

@@ -58,7 +58,7 @@ abstract class Mailer implements ArrayAccess, EventListenerInterface
             $this->layout = Inflector::underscore($this->getName());
         }
 
-        $this->_email = $email->profile((array)$this);
+        $this->_email = $email;
     }
 
     /**