mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
send to the reply-to address if it exists or the from address
This commit is contained in:
parent
764b05fff4
commit
dce0b15f4f
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ export const replyToEmailResolver = authorized<
|
|||
}
|
||||
|
||||
const result = await sendEmail({
|
||||
to: recentEmail.from,
|
||||
to: recentEmail.replyTo || recentEmail.from, // send to the reply-to address if it exists or the from address
|
||||
subject: 'Re: ' + recentEmail.subject,
|
||||
text: 'Okay',
|
||||
from: recentEmail.to,
|
||||
|
|
|
|||
Loading…
Reference in a new issue