# learnpress/4.4.4/inc/emails/instructor/class-lp-email-instructor-accepted.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.4. 40 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.4/code/inc/emails/instructor/class-lp-email-instructor-accepted.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.4/raw/inc/emails/instructor/class-lp-email-instructor-accepted.php
- Modified: 2026-08-03T03:26:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.4/code/inc/emails/instructor/class-lp-email-instructor-accepted.php#L10-L20`.

```php
<?php
/**
 * Class LP_Email_Instructor_Accepted
 *
 * @author  ThimPress
 * @package LearnPress/Classes
 * @version 3.0.1
 * @editor tungnx
 * @modify 4.1.3
 */

/**
 * Prevent loading this file directly
 */
defined( 'ABSPATH' ) || exit();

if ( ! class_exists( 'LP_Email_Instructor_Accepted' ) ) {
	/**
	 * Class LP_Email_Instructor_Accepted
	 */
	class LP_Email_Instructor_Accepted extends LP_Email_Type_Become_An_Instructor {

		/**
		 * LP_Email_Instructor_Accepted constructor.
		 */
		public function __construct() {
			$this->id          = 'instructor-accepted';
			$this->title       = __( 'Accepted', 'learnpress' );
			$this->description = __( 'Your email requesting to become an instructor has been accepted.', 'learnpress' );

			$this->default_subject = __( '[{{site_title}}] Your request to become an instructor has been accepted', 'learnpress' );
			$this->default_heading = __( 'Your email requesting to become an instructor has been accepted.', 'learnpress' );

			parent::__construct();
		}
	}
}

return new LP_Email_Instructor_Accepted();

```
