> For the complete documentation index, see [llms.txt](https://developers.weglot.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.weglot.com/wordpress/use-cases/translation-of-woocommerce-emails-sent-to-customers.md).

# Plugin Woocommerce: Translate all email sent to customers

When a WooCommerce order is placed in a translated language, Weglot records that language in the order's metadata (`weglot_language`). The WooCommerce emails related to that order (order confirmation, invoice, etc.) are then translated into the customer's language.

Two conditions must be met:

* The **Translate emails** option is enabled in the Weglot settings.
* The order is linked to a language — orders placed in your original language are not translated.

This behavior is **enabled by default**. If you need to turn it off, use the `weglot_woocommerce_translate_following_mail` filter:

```php
add_filter( 'weglot_woocommerce_translate_following_mail', '__return_false' );
```
