# learnpress/4.4.0/inc/emails/student/class-lp-email-processing-order-user.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.0. 34 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.0/code/inc/emails/student/class-lp-email-processing-order-user.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.0/raw/inc/emails/student/class-lp-email-processing-order-user.php
- Modified: 2026-06-17T11:04:44+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.0/code/inc/emails/student/class-lp-email-processing-order-user.php#L10-L20`.

```php
<?php
/**
 * LP_Email_Processing_Order_User.
 *
 * @author  ThimPress
 * @package Learnpress/Classes
 * @extends LP_Email_Type_Order
 * @version 3.0.1
 * @editor tungnx
 * @version 4.1.3
 */

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

if ( ! class_exists( 'LP_Email_Processing_Order_User' ) ) {
	class LP_Email_Processing_Order_User extends LP_Email_Type_Order_Student {
		public function __construct() {
			$this->id          = 'processing-order-user';
			$this->title       = __( 'User', 'learnpress' );
			$this->description = __( 'Notify users when their course orders are being processed.', 'learnpress' );

			$this->default_subject = __( 'The order placed on {{order_date}} has been processing', 'learnpress' );
			$this->default_heading = __( 'Thank you for your order', 'learnpress' );

			parent::__construct();
		}
	}

	return new LP_Email_Processing_Order_User();
}

```
