diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index c5859fb55..d5faf9c74 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,5 @@ 7.10.29 + - fixed #12454: Email to Group ignores the From field 7.10.28 - fixed: Clearing the caches for groups that don't exist, but have created group objects. diff --git a/lib/WebGUI/Operation/Group.pm b/lib/WebGUI/Operation/Group.pm index 2b6f6089a..3b67dd3c3 100644 --- a/lib/WebGUI/Operation/Group.pm +++ b/lib/WebGUI/Operation/Group.pm @@ -868,6 +868,8 @@ sub www_emailGroupSend { status => 'unread', message => $f->process('message', 'HTMLArea'), sentBy => $session->user->userId, + }, + { overridePerUserDelivery => $f->get('override'), extraHeaders => { from => $f->get('from') } }