maybe_action_scheduler()->is_enabled() ) { um_fetch_user( $args['fetch_user_id'] ); } unset( $args['fetch_user_id'] ); } UM()->mail()->send( $user_email, $template, $args ); } /** * Add some custom placeholders when sending via Action Scheduler. * * @todo Workaround for now. Maybe we need to handle email placeholders in email class where $user_id is fetched everytime * * @param string $email * @param string $template * * @return void */ public function before_email_send( $email, $template ) { if ( ! UM()->maybe_action_scheduler()->is_enabled() ) { return; } if ( 'checkmail_email' === $template ) { add_filter( 'um_template_tags_patterns_hook', array( UM()->user(), 'add_activation_placeholder' ) ); add_filter( 'um_template_tags_replaces_hook', array( UM()->user(), 'add_activation_replace_placeholder' ) ); } elseif ( 'welcome_email' === $template || 'approved_email' === $template || 'resetpw_email' === $template ) { add_filter( 'um_template_tags_patterns_hook', array( UM()->password(), 'add_placeholder' ) ); add_filter( 'um_template_tags_replaces_hook', array( UM()->password(), 'add_replace_placeholder' ) ); } } } }