diff options
author | Niels de Blaauw <niels.de.blaauw@gmail.com> | 2019-03-13 10:56:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-13 10:56:25 +0100 |
commit | 08511ba5aa15b6a7100fa2856700784c27a2c15e (patch) | |
tree | b1656e0a0687d1e2c664f194bf38fa58d334ea1b | |
parent | bc8e380095d216b943a356d09cba58e1daf34aca (diff) | |
parent | 73d1849759284646af8548e11614176b788f59d2 (diff) | |
download | Post-SMTP-08511ba5aa15b6a7100fa2856700784c27a2c15e.zip |
Merge pull request #29 from yehudah/28-fix-uknown-method-getMessageSenderName
Fixes #28, uses correct method for sender name
-rw-r--r-- | Postman/PostmanOptions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Postman/PostmanOptions.php b/Postman/PostmanOptions.php index af88b18..b32d738 100644 --- a/Postman/PostmanOptions.php +++ b/Postman/PostmanOptions.php @@ -603,7 +603,7 @@ if ( ! class_exists( 'PostmanOptions' ) ) { * @see PostmanOptionsInterface::getSenderEmail() */ public function getSenderName() { - return $this->getMessageNameEmail(); + return $this->getMessageSenderName(); } /** |