diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2020-06-20 21:39:39 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2020-06-20 21:39:39 +0000 |
commit | 53b2035def91dc0fe6d8f68e4a34aca2acc79ec8 (patch) | |
tree | 03e818494b3390d3e7ed4aedac0a50f0b722f0a3 /Postman/Postman-Send-Test-Email | |
parent | 67430a4a94c041c57cb4043fcd05c85365ee17f5 (diff) | |
download | Post-SMTP-53b2035def91dc0fe6d8f68e4a34aca2acc79ec8.zip |
Email log improvements: Solution column, filter.
Some text clarify.
Diffstat (limited to 'Postman/Postman-Send-Test-Email')
-rw-r--r-- | Postman/Postman-Send-Test-Email/PostmanSendTestEmailController.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Postman/Postman-Send-Test-Email/PostmanSendTestEmailController.php b/Postman/Postman-Send-Test-Email/PostmanSendTestEmailController.php index 1a207c8..03df901 100644 --- a/Postman/Postman-Send-Test-Email/PostmanSendTestEmailController.php +++ b/Postman/Postman-Send-Test-Email/PostmanSendTestEmailController.php @@ -117,7 +117,8 @@ class PostmanSendTestEmailController { 'not_started' => _x( 'In Outbox', 'Email Test Status', 'post-smtp' ), 'sending' => _x( 'Sending...', 'Email Test Status', 'post-smtp' ), 'success' => _x( 'Success', 'Email Test Status', 'post-smtp' ), - 'failed' => _x( 'Failed', 'Email Test Status', 'post-smtp' ), + //'failed' => _x( 'Failed', 'Email Test Status', 'post-smtp' ), + 'failed' => sprintf( 'Failed - Check the plugin email log for more info: %s', '<a href="' . esc_url( admin_url( 'admin.php?page=postman_email_log' ) ) . '">Here</a>' ), 'ajax_error' => __( 'Ajax Error', 'post-smtp' ), ) ); } |