# learnpress/4.4.1/inc/emails/guest/class-lp-email-processing-order-guest.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.1. 36 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.1/code/inc/emails/guest/class-lp-email-processing-order-guest.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.1/raw/inc/emails/guest/class-lp-email-processing-order-guest.php
- Modified: 2026-06-26T11:19:40+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.1/code/inc/emails/guest/class-lp-email-processing-order-guest.php#L10-L20`.

```php
<?php
/**
 * LP_Email_Processing_Order_Guest.
 *
 * @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_Guest' ) ) {
	class LP_Email_Processing_Order_Guest extends LP_Email_Type_Order_Guest {
		public function __construct() {
			$this->id          = 'processing-order-guest';
			$this->title       = __( 'Guest', 'learnpress' );
			$this->description = __( 'When the order is processed, send an email to the user who purchased the course as a guest.', '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_Guest();
}



```
