Any way to run GlobalRecord from different language

I need to send Email to Customer in the Language in which he placed order. For examle it’s UK. But if I use Admin panel in EN this will show me records for EN

GlobalRecord::findForGlobal('Settings')

How to select entries in another language?

Also, it seems mail templates are common for both languages, it would be nice to have it multilingual too.

Since every record has a site id, you might be able to hook into that to send a different email.

First, locate the site ID (it’s the ID in the database), then call the Site::withContext wrapper. For example, if the Site ID is 2

Site::withContext(2, function() { 
    // All actions here occur within the context of site ID 2
    // including creations, updates, lookups, etc.
});

Thank you very match