fix(mail): use the correct replyTo when set to a non*default identity

This commit is contained in:
Hivert Quentin
2025-11-24 15:44:21 +01:00
parent e2b8494a9c
commit 03fa91dc22

View File

@@ -387,7 +387,11 @@
var node, children, nl, reNl, nlNb, space, signature, previousIdentity;
if (identity && identity.full)
{
this.message.editable.from = identity.full;
if(identity.replyTo)
this.message.editable.replyTo = identity.replyTo
}
else if (identity && identity.length)
return;