LLMS_Notification_Processor_Email

Notification Background Processor: Emails


Source Source

File: includes/notifications/processors/class.llms.notification.processor.email.php

class LLMS_Notification_Processor_Email extends LLMS_Abstract_Notification_Processor {

	/**
	 * action name
	 *
	 * @var  string
	 */
	protected $action = 'llms_notification_processor_email';

	/**
	 * Processes an item in the queue
	 *
	 * @since 3.8.0
	 * @since 3.10.1 Unknown.
	 * @since 3.33.2 Log additional data during errors.
	 *
	 * @param int $notification_id ID of an LLMS_Notification.
	 * @return bool `false` removes item from queue, `true` retain for further processing.
	 */
	protected function task( $notification_id ) {

		$this->log( sprintf( 'sending email notification ID #%d', $notification_id ) );

		$notification = new LLMS_Notification( $notification_id );

		$view = $notification->get_view();

		if ( ! $view ) {
			$this->log( 'ID#' . $notification_id );
			return false;
		}

		// setup the email.
		$mailer = llms()->mailer()->get_email( 'notification' );

		if ( ! $mailer->add_recipient( $notification->get( 'subscriber' ), 'to' ) ) {
			$this->log( sprintf( 'error sending email notification ID #%d - subscriber does not exist', $notification_id ) );
			$this->log( $notification->toArray() );
			$notification->set( 'status', 'error' );
			return false;
		}

		$mailer->set_subject( $view->get_subject() )->set_heading( $view->get_title() )->set_body( $view->get_html() );

		// log when wp_mail fails.
		if ( $mailer->send() ) {
			$notification->set( 'status', 'sent' );
		} else {
			$this->log( sprintf( 'error sending email notification ID #%d', $notification_id ) );
			$this->log( $notification->toArray() );
		}

		return false;

	}

}


Top ↑

Methods Methods

  • task — Processes an item in the queue

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0
3.33.2 Improve data logged during errors.
3.10.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.