diff options
author | Niels de Blaauw <niels.de.blaauw@gmail.com> | 2019-03-13 10:50:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-13 10:50:47 +0100 |
commit | bc8e380095d216b943a356d09cba58e1daf34aca (patch) | |
tree | aba313c16b7cccf5450db85d0bb0b185e17d65de /Postman/notifications/PostmanMailNotify.php | |
parent | 4e0662202f2f2da40af4efa29da9363a468ec118 (diff) | |
parent | fd70868a4b7c569ff5eeddfa36b71709c24b3555 (diff) | |
download | Post-SMTP-bc8e380095d216b943a356d09cba58e1daf34aca.zip |
Merge pull request #25 from NielsdeBlaauw/1-fix-variable-text-domain
Fixes #1, deprecates and replaces variable text domain usage
Diffstat (limited to 'Postman/notifications/PostmanMailNotify.php')
-rw-r--r-- | Postman/notifications/PostmanMailNotify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Postman/notifications/PostmanMailNotify.php b/Postman/notifications/PostmanMailNotify.php index 0313f7f..a76fb2a 100644 --- a/Postman/notifications/PostmanMailNotify.php +++ b/Postman/notifications/PostmanMailNotify.php @@ -7,6 +7,6 @@ class PostmanMailNotify implements Postman_Notify { $to_email = apply_filters( 'post_smtp_notify_email',get_bloginfo( 'admin_email' ) ); $domain = get_bloginfo( 'url' ); - mail( $to_email, "{$domain}: " . __( 'Post SMTP email error', Postman::TEXT_DOMAIN ), $message , '', "-f{$to_email}" ); + mail( $to_email, "{$domain}: " . __( 'Post SMTP email error', 'post-smtp' ), $message , '', "-f{$to_email}" ); } }
\ No newline at end of file |