- Issue created by @JeroenT
- 🇬🇧United Kingdom adamps
AFAICS that patch will make the parameters available contained in the legacy_message param - which works I guess, but isn't what I'd recommend. In my view the legacy_message param is an implementation detail of LegacyMailer and isn't part of the interface. Instead all the information from $message should be available via $email.
The legacy parameters should be available directly via
getParams()
, but they are missing. We can do that inLegacyMailerHelper::emailFromArray()
something like this// Parameters. $email->setParams($message['params'])
- 🇬🇧United Kingdom adamps
I fixed it in 🐛 Updating from 1.5 to 1.6 broke rerouting for webforms Needs work which was changing the same function anyway