Skip to content
Snippets Groups Projects
Commit b688c5fe authored by Jussi Viitamäki's avatar Jussi Viitamäki Committed by Adam Shepherd
Browse files

Issue #3405108 by jviitamaki, sourabhjain, AdamPS, kyberman: Headers should be in camel case

parent d940461a
No related branches found
No related tags found
1 merge request!77Convert headers to camel case
Pipeline #76321 passed with warnings
......@@ -569,7 +569,8 @@ class Email implements InternalEmailInterface {
$value[] = $address->getSymfony();
}
if ($value) {
$headers->addMailboxListHeader($name, $value);
// Convert headers to camel case.
$headers->addMailboxListHeader(ucwords($name, '-'), $value);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment