Skip to content

Commit

Permalink
backends: set email reply to field
Browse files Browse the repository at this point in the history
  • Loading branch information
rekt-hard authored and kpsherva committed Oct 5, 2023
1 parent e313e78 commit bea1700
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions invenio_notifications/backends/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def send(self, notification, recipient):
recipient.data.get("email") or recipient.data.get("email_hidden")
],
"sender": current_app.config["MAIL_DEFAULT_SENDER"],
"reply_to": current_app.config["MAIL_DEFAULT_REPLY_TO"],
}
)
return resp # TODO: what would a "delivery" result be

0 comments on commit bea1700

Please sign in to comment.