Skip to content
Snippets Groups Projects
Unverified Commit 335c4ab1 authored by Christoph Wurst's avatar Christoph Wurst
Browse files

Fix reply recipient and own address logic

parent 6ae38bc7
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,11 @@
return
}
this.replyRecipient = buildReplyRecipients(message, {}) // TODO: own address
const account = this.$store.getters.getAccount(message.accountId)
this.replyRecipient = buildReplyRecipients(message, {
label: account.name,
email: account.emailAddress,
})
this.replySubject = buildReplySubject(message.subject)
if (!message.hasHtmlBody) {
......
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