- Issue created by @chmez
- Issue was unassigned.
- Status changed to Needs review
about 1 year ago 11:19am 20 October 2023 - πΊπ¦Ukraine chmez πΊπ¦ Lviv
Ensure that the user entity is found based on E-mail and that the user entity isn't a pre-defined entity created during the enabling installation profile.
- πΊπ¦Ukraine chmez πΊπ¦ Lviv
Add checking to exist a severity record during letter content creation.
- πΊπ¦Ukraine chmez πΊπ¦ Lviv
Fix the condition that was added in the previous patch.
- Status changed to Needs work
11 months ago 4:15pm 5 December 2023 - ππΊHungary szato
@lexhouk,
thank you for your report, and work.
We should update the patch:
- now it can't apply to 4.0.x-dev branch
- the 'severity' check is already managed in a separate issue: Undefined array key "severity" in exception_mailer_mail() π Undefined array key "severity" in exception_mailer_mail() RTBC
- we can change
if (($user = user_load_by_mail($admin)) !== FALSE) {
toif ($user = user_load_by_mail($admin)) {
- ππΊHungary szato
We also want to send emails to addresses that aren't associated with existing users, so we need something like this:
$data['email'] = $admin; if ($user = user_load_by_mail($admin)) { $data['user_langcode'] = $user->getPreferredLangcode(); } $queue->createItem($data); }
- Merge request !4Issue #3395572 by lexhouk, szato: Queue workers are broken β (Merged) created by szato
- Status changed to Needs review
11 months ago 4:45pm 13 December 2023 - ππΊHungary szato
Regarding points: 1, 2
I removed 'exception_email_queue' plugin, we are using only the 'manual_exception_email'. Duplicates were made in the commit: https://git.drupalcode.org/project/exception_mailer/-/commit/31379083fbc...MR created.
- π·π΄Romania Kosa Ilma
Kosa Ilma β made their first commit to this issueβs fork.
-
Kosa Ilma β
committed a405af85 on 4.0.x authored by
lexhouk β
Issue #3395572 by lexhouk, szato: Queue workers are broken
-
Kosa Ilma β
committed a405af85 on 4.0.x authored by
lexhouk β
- Status changed to Fixed
11 months ago 7:35am 14 December 2023 Automatically closed - issue fixed for 2 weeks with no activity.