Fix bug #12454, loss of from field data when emailing groups
This commit is contained in:
parent
ed28bd4013
commit
9b219abec7
2 changed files with 3 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
7.10.29
|
7.10.29
|
||||||
|
- fixed #12454: Email to Group ignores the From field
|
||||||
|
|
||||||
7.10.28
|
7.10.28
|
||||||
- fixed: Clearing the caches for groups that don't exist, but have created group objects.
|
- fixed: Clearing the caches for groups that don't exist, but have created group objects.
|
||||||
|
|
|
||||||
|
|
@ -868,6 +868,8 @@ sub www_emailGroupSend {
|
||||||
status => 'unread',
|
status => 'unread',
|
||||||
message => $f->process('message', 'HTMLArea'),
|
message => $f->process('message', 'HTMLArea'),
|
||||||
sentBy => $session->user->userId,
|
sentBy => $session->user->userId,
|
||||||
|
},
|
||||||
|
{
|
||||||
overridePerUserDelivery => $f->get('override'),
|
overridePerUserDelivery => $f->get('override'),
|
||||||
extraHeaders => { from => $f->get('from') }
|
extraHeaders => { from => $f->get('from') }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue