- Issue created by @aerzas
- Status changed to Needs review
about 1 year ago 5:40am 8 January 2024 - Status changed to Needs work
about 1 year ago 5:23pm 11 January 2024 - ๐ฌ๐งUnited Kingdom adamps
Thanks for the issue and patch. Strange, I thought I had written code for this already๐.
The issue is only about LegacyEmailBuilder so the fix should also be in the legacy code. I believe we can fix it in
LegacyMailerHelper::emailFromArray()
. On line 141 there is a call to$email->setAddress()
. We can pass a second parameter of$message['langcode']
. This should be only for the to address.This project now uses merge requests not patches please.
- First commit to issue fork.
- Status changed to Needs review
about 1 year ago 7:10am 15 January 2024 - ๐ฎ๐ณIndia viren18febs
This project now uses merge requests not patches please.
Please review.
- Status changed to Needs work
about 1 year ago 9:56am 17 January 2024 - ๐ฌ๐งUnited Kingdom adamps
Thanks, I mean pass langcode as second parameter to parseAddress()
- Status changed to Needs review
about 1 year ago 11:33am 17 January 2024 - ๐ฎ๐ณIndia viren18febs
I have updated langcode as second parameter to parseAddress(), please review.
- ๐ฌ๐งUnited Kingdom adamps
That looks good to me. @Aerzas please can you test?
- Status changed to Needs work
about 1 year ago 10:25am 23 January 2024 - ๐จ๐ญSwitzerland aerzas
Thank you for the updated code @viren18febS .
Unfortunately, it doesn't seem to fix my issue. The langcode is correctly set on the address but it is still the current langcode that it is used by
Mailer::doSend
. In the context of a legacy email, the__disable_customize__
parameter is set and the langcode processing in theMailer::doSend
method is ended early intentionally, no address is parsed. The address langcode is correct but not the email langcode.We could prevent the setting of the
__disable_customize__
parameter inLegacyEmailBuilder::createParams
, but then the account will also be updated/processed inMailer::doSend
which may have unwanted side effects.We could otherwise split the disabling parameter into two:
__disable_customize_langcode__
and__disable_customize_account__
. This would offer a fine-grained way of handling overrides but will require additional conditions in the process loop.Or we could consider that
__disable_customize__
only excludes account customization and still gather the langcode from the to addresses. - ๐ฌ๐งUnited Kingdom adamps
Good point, thanks @Aerzas. How about this?
- LegacyEmailBuilder creates the To address with the current langcode and also current account. Add an extra param to parseAddress.
- Remove all code for __disable_customize__ - ๐ง๐ชBelgium yorder.be
Has there been any progress on this issue?
Seems quite the priority since this affects all Core user mails.
Or is there another workaround to be able to send the mails in the correct language? - ๐จ๐ญSwitzerland aerzas
@yorder.be The patch I proposed fixes the issue in the meanwhile.
- ๐จ๐ญSwitzerland aerzas
@AdamPS Thank you for your feedback, I'll work on a new MR as soon as I can.
- ๐ฌ๐งUnited Kingdom adamps
__disable_customize__ has now been removed from 2.x. It should now be a 1 line fix to
LegacyMailer::send()
to pass$message['langcode']
as the 2nd parameter. - Merge request !139Issue #3413081: Set langcode with LegacyEmailBuilder. โ (Open) created by Unnamed author
- ๐ฎ๐ณIndia koustav_mondal Kolkata
@adamps Made the changes. Previous MR was forked form 1.4.0 and LegacyMailer class was not present in that specific version. So, pull the latest 2.x-dev and raised new MR-139 and made the changes in that MR. Kindly review it.
- ๐ฎ๐ณIndia koustav_mondal Kolkata
Added 2nd parameter to parseAddress().
- ๐ฌ๐งUnited Kingdom adamps
Great, now it needs someone to test. A manual test would be OK. Set up a multi-language site, configure a user with a non-default language, send an email with template text that depends on language. Test without the fix the language is wrong, with the fix it is right.
- Status changed to Needs review
4 days ago 11:45am 2 April 2025 - ๐ฎ๐ณIndia debrup
I was testing this issue as mentioned by @adamps.
- Set up a multilingual site with a user configured with a non-default language.
- Used hook_mail() and mail() method to send mail during user creation (for using LegacyEMailBuilder).
- However the correct language template is being sent to the receiver even without the fix based on the user's langcode.
Am I doing it correctly? If not, then mention where and how the error occurs and how to reproduce it. Any help is appreciated. Thanks in advance :)
- ๐ฌ๐งUnited Kingdom adamps
Thanks @debrup
I have one idea - make sure that receiver langcode is not the default.
- ๐ฎ๐ณIndia debrup
@adamps I have created a new user set to a non-default language. When their account gets created the mail is sent with the corresponding template in the langcode set for that user.
- ๐ฌ๐งUnited Kingdom adamps
adamps โ changed the visibility of the branch 3413081-set-langcode-with to hidden.
- ๐ฌ๐งUnited Kingdom adamps
Also please make sure that the current account that you are logged in with has a different langcode from the one on the new user.
- ๐ฌ๐งUnited Kingdom adamps
Sorry I realise anyway that the fix is incomplete, my mistake. We need to
- Remove reference to
__disable_customize__
inMailer::doSend()
andLegacyMailer::send()
- Add a 3rd parameter to
ImportHelper::parseAddress()
which is?AccountInterface $account = NULL
and pass the value tonew Address()
in 2 places. - In
LegacyMailer
, after the code that we already added, pass a 3rd parameter which is the current account. Add an extra constructor parameterprotected readonly AccountInterface $account
to fetch this.
- Remove reference to