thisThis is my email_template.html
<table class="order-details"> <tr> <td class="address-details"> <h3>{{trans "Billing Info"}}</h3> <p>{{var formattedBillingAddress|raw}}</p> </td> {{depend order.getIsNotVirtual()}} <td class="address-details"> <h3>{{trans "Shipping Info"}}</h3> <p>{{var formattedShippingAddress|raw}}</p> </td> {{/depend}} </tr> </table> and in my observer
$templateVars = array( 'store' => $this->storeManager->getStore(), 'message' => 'We processed your order ID We will contact you soon in mail for the acknowledgement if you not receive mail within 4 hours please get help from [email protected]', 'order' => $order, 'store'=> $store, 'productName'=> $productName ); ->setTemplateVars($templateVars) Now myMy question is how can i set values of billinginfobilling info, shipping info and payment method in this email template.