diff options
author | Niels de Blaauw <niels@level-level.com> | 2019-03-13 10:55:45 +0100 |
---|---|---|
committer | Niels de Blaauw <niels@level-level.com> | 2019-03-13 10:55:45 +0100 |
commit | 73d1849759284646af8548e11614176b788f59d2 (patch) | |
tree | b1656e0a0687d1e2c664f194bf38fa58d334ea1b | |
parent | bc8e380095d216b943a356d09cba58e1daf34aca (diff) | |
download | Post-SMTP-73d1849759284646af8548e11614176b788f59d2.zip |
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(); } /** |