You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->email_subject = \esc_html__( 'Test email from Progress Planner', 'progress-planner' );
115
-
// translators: %s is the admin URL.
116
-
$this->email_content = sprintf( \esc_html__( 'This is a test email. Complete the task by clicking the link: %s', 'progress-planner' ), \admin_url( 'admin.php?page=progress-planner&prpl_complete_task=' . $this->get_task_id() ) );
114
+
$this->email_subject = \esc_html__( 'Your Progress Planner test message!', 'progress-planner' );
115
+
// translators: %s the admin URL.
116
+
$this->email_content = sprintf( \esc_html__( 'You just used Progress Planner to verify if sending email works on your website. The good news; it does! Click %s to mark Ravi\'s Recommendation as completed.', 'progress-planner' ), '<a href="' . \admin_url( 'admin.php?page=progress-planner&prpl_complete_task=' . $this->get_task_id() ) . '" target="_blank">' . \esc_html__( 'here', 'progress-planner' ) . '</a>' );
117
117
}
118
118
119
119
/**
@@ -131,7 +131,7 @@ public function get_title() {
131
131
* @return string
132
132
*/
133
133
publicfunctionget_description() {
134
-
return\esc_html__( 'Test if your website can send emails correctly', 'progress-planner' );
134
+
return\esc_html__( 'Your website tries to send you important email. Test if sending email from your site works well.', 'progress-planner' );
135
135
}
136
136
137
137
/**
@@ -222,7 +222,9 @@ public function ajax_test_email_sending() {
wp_send_json_success( \esc_html__( 'Email sent successfully.', 'progress-planner' ) );
@@ -317,7 +319,7 @@ public function the_popover_content() {
317
319
printf(
318
320
/* translators: %s is a link to the troubleshooting guide. */
319
321
\esc_html__( 'There are a few common reasons why your email might not be sending. Check the %s to find out what’s causing the issue and how to fix it.', 'progress-planner' ),
0 commit comments