get_emails(); $email = $emails['WC_Email_Customer_Failed_Order'] ?? null; if ( ! $email ) { return; } $this->id = $email->id; $this->title = $email->get_title(); $this->root_email = $email; $this->recipient = function_exists( 'yaymail_get_email_recipient_zone' ) ? yaymail_get_email_recipient_zone( $email ) : ''; $this->render_priority = apply_filters( 'yaymail_email_render_priority', $this->render_priority, $this->id ); add_filter( 'wc_get_template', [ $this, 'get_template_file' ], $this->render_priority ?? 10, 3 ); $this->maybe_disable_block_email_editor(); } public function get_default_elements() { $email_title = __( 'Sorry, your order was unsuccessful', 'woocommerce' ); $email_text_1 = __( 'Hi [yaymail_billing_first_name]', 'woocommerce' ); $email_text_2 = __( 'Unfortunately, we couldn\'t complete your order due to an issue with your payment method.', 'woocommerce' ); $email_text_3 = __( 'If you\'d like to continue with your purchase, please return to [yaymail_site_name] and try a different method of payment.', 'woocommerce' ); $email_text_4 = __( 'Your order details are as follows:', 'woocommerce' ); $default_elements = ElementsLoader::load_elements( [ [ 'type' => 'Logo', ], [ 'type' => 'Heading', 'attributes' => [ 'rich_text' => $email_title, ], ], [ 'type' => 'Text', 'attributes' => [ 'rich_text' => '
' . $email_text_1 . '
' . $email_text_2 . '
' . $email_text_3 . '
' . $email_text_4 . '
', ], ], [ 'type' => 'OrderDetails', ], [ 'type' => 'BillingShippingAddress', ], [ 'type' => 'Footer', ], ] ); return $default_elements; } public function get_template_path() { return yaymail_get_template( 'emails/customer-failed-order.php', '', YAYMAIL_PLUGIN_PATH . 'templates/' ); } }