StoreHippo allows you to send notifications in different languages. 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 notifications to your customer in the language they have ordered.
Your customers have placed orders in the Arabic language. You want your customers to receive notifications 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:
{{#compare order.client_details.selected_language "AR" operator="=="}}arabic confirmation{{/compare}} {{#compare order.client_details.selected_language "EN" operator="=="}}test confirmation{{/compare}}
{{#compare ms.user.language "AR" operator="=="}}Hi {{user.name}},AR You recently registered for {{store.url}}. To complete your registration, follow this link: Click here for verification Thanks{{store.title}} Team{{/compare}}
Now, whenever the customer will place an order in the Arabic language, then the customer will receive an order confirmation notification in the Arabic language as well. Similarly, you can do the same for other notifications and other languages.