After updating symfony_mailer from 1.5 to 1.6 we noticed that all mails send through webform are no longer rerouted.
We are using reroute_email module for that.
Not sure if this is an issue with symfony_mailer, reroute_email or webform...
I'm posting it here because we have only updated symfony_mailer when we noticed this issue. The other modules have not been updated.
I will try and do some further digging en debugging to figure out what is going wrong and report back if/when I find something.
Issue fork symfony_mailer-3527050
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
adamps commentedThanks for the report. Sorry I believe it was caused by #3421400: Change to the phases.
I took the code that alters "to" out of
LegacyMailerHelper::emailFromArray()because this was too late and was causing wrong languages. It's tricky because whatever order I do things in seems to break some specific case😃.Comment #3
adamps commentedPotentially we can fix something like this:
@trigger_errorin BaseEmailTrait::setAddress.Comment #4
adamps commentedComment #5
adamps commentedI added a warning to the release note.
Comment #6
adamps commentedComment #10
adamps commentedFixed in v2 next backport to v1
Comment #11
adamps commentedv1 MR is ready for review and test please
Comment #12
adamps commentedComment #13
weseze commentedI tested the 1.6 + patch file based on "24ec304e - V1 backport".
This work as expected for us. Both in webform mails, and other mails.
Comment #14
adamps commentedGreat thanks
Comment #16
adamps commentedComment #17
adamps commentedI created a 1.6.1 release containing this fix.
Comment #18
weseze commentedThanks for the quick response and the new release!