StoreHippo allows you to customize the invoice templates. With this, you can make the language specific invoice template. You can put a language check condition to check in which language the user has ordered so you can modify your mail template accordingly. This will help you to send invoices to your customers in the language they have ordered.
Some of your customers have placed orders in the Arabic language and some have placed in the English language. You want to send the invoices having content in the same language in which they have placed the order.
If you want your customers to receive the notifications in the same language in which they have placed the order, then you need to make the changes in the notifications section. To do so, follow the steps mentioned below:
Example
{{#compare order.client_details.selected_language "AR" operator="=="}}
نموذج الفاتورة عند اختيار اللغة العربية
{{/compare}}
{{#compare order.client_details.selected_language "EN" operator="=="}}
The invoice template when English language is selected
{{/compare}}
Now, when the customer will place an order in the Arabic language, then the customer will receive an invoice in the Arabic language.