Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Notification_View_Payment_Retry::set_body_email()
Setup default notification body for email notifications.
Return Return
(void)
Source Source
File: includes/notifications/views/class.llms.notification.view.payment.retry.php
private function set_body_email() { $mailer = llms()->mailer(); $rows = array( 'NEXT_PAYMENT_DATE' => __( 'Payment Due Date', 'lifterlms' ), 'PRODUCT_TITLE_LINK' => '{{PRODUCT_TYPE}}', 'PLAN_TITLE' => __( 'Plan', 'lifterlms' ), 'PAYMENT_AMOUNT' => __( 'Amount', 'lifterlms' ), ); ob_start(); ?><p><?php printf( __( 'Hello %s,', 'lifterlms' ), '{{CUSTOMER_NAME}}' ); ?></p> <p><?php printf( __( 'The automatic payment for your subscription to %1$s has failed. We\'ll automatically retry this charge on %2$s.', 'lifterlms' ), '{{PRODUCT_TITLE}}', '{{NEXT_PAYMENT_DATE}}' ); ?></p> <p><?php printf( __( 'To reactivate your subscription you can login to your account and %1$spay now%2$s.', 'lifterlms' ), '<a href="{{ORDER_URL}}">', '</a>' ); ?></p> <h4><?php printf( __( 'Order #%s', 'lifterlms' ), '{{ORDER_ID}}' ); ?></h4> <?php echo $mailer->get_table_html( $rows ); ?> <p><a href="{{ORDER_URL}}"><?php _e( 'Update Payment Method', 'lifterlms' ); ?></a></p> <?php return ob_get_clean(); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Build the table with mailer helper. |
3.10.0 | Introduced. |