Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(compose): Use from-name when sending email, not identity name #1561

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/compose/compose.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ export class ComposeComponent implements AfterViewInit, OnDestroy, OnInit {
} else {
this.model.reply_to = from.reply_to;
draft_from = from && from.id ?
from.name + '%' + from.email + '%' + from.id + '%' + from.folder :
from.from_name + '%' + from.email + '%' + from.id + '%' + from.folder :
from.email;
}
if (send) {
Expand Down Expand Up @@ -723,7 +723,7 @@ export class ComposeComponent implements AfterViewInit, OnDestroy, OnInit {
return this.http.post('/rest/v1/draft', {
type: 'draft',
username: me.username,
from: from && from.id ? from.name + '%' + from.email + '%' + from.id : from ? from.email : undefined,
from: from && from.id ? from.from_name + '%' + from.email + '%' + from.id : from ? from.email : undefined,
from_email: from ? from.email : '',
to: this.model.to.map((recipient) => recipient.nameAndAddress).join(','),
cc: this.model.cc.map((recipient) => recipient.nameAndAddress).join(','),
Expand Down
Loading