apply_filters( 'wpas__user_email_notifications_template_tags', $tags );
Version 5.1.1
add_filter( 'wpas__user_email_notifications_template_tags', function( $tags ) {
$my_tags = array(
array(
'tag' => '{my_tag_1}',
'desc' => 'My tag 1'
),
array(
'tag' => '{my_tag_2}',
'desc' => 'My tag 2'
),
);
return array_merge( $tags, $my_tags );
});