Zend certified PHP/Magento developer

How to Get Order Redeemed Reward Points and Earned Rewards Points on order_new.html page Email template Magneto 2.3.4

I want Reward Redeemed and and Earned Points in order_new.html Email template page in Total section and E Gift Card Reedemed Data also required. For that I Overide this file in my theme:

/var/www/html/aldo/app/design/frontend/vendor/theme/Magento_Sales/email/order_new.html

/var/www/html/magento/app/design/frontend///Magento_Sales/templates/order/totals.phtml.

< ?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * @var $block MagentoSalesBlockOrderTotals
 * @see MagentoSalesBlockOrderTotals
 */
$_totals = $block->getTotals();
$_order = $block->getOrder();
$demoData = "";
?>

s
    
< ?= /* @escapeNotVerified */ __('Promo Discount') ?> < ?= /* @escapeNotVerified */ $_order->getBaseDiscountAmount() ?>
< ?= /* @escapeNotVerified */ __('Shipping') ?> < ?= /* @escapeNotVerified */ $_order->getShippingAmount() ?>
< ?= /* @escapeNotVerified */ __('Subtotal') ?> < ?= /* @escapeNotVerified */ $_order->getSubtotal() ?>
< ?= /* @escapeNotVerified */ __('GST incl') ?> < ?= /* @escapeNotVerified */ $_order->getTaxAmount() ?>
< ?= /* @escapeNotVerified */ __('e-Gift Card Redeemed') ?> < ?= /* @escapeNotVerified */ $demoData ?>
< ?= /* @escapeNotVerified */ __('Points Earned') ?> < ?= /* @escapeNotVerified */ $demoData ?>
< ?= /* @escapeNotVerified */ __('Points Redeemed') ?> < ?= /* @escapeNotVerified */ $demoData ?>
< ?= /* @escapeNotVerified */ __('Total') ?> < ?= /* @escapeNotVerified */ $_order->getGrandTotal() ?>