Skip to content

Commit

Permalink
email_from now also sets the reply_to field of the email (#170)
Browse files Browse the repository at this point in the history
* email_from now also sets the reply_to field of the email

* Update README.rst

---------

Co-authored-by: jans23 <[email protected]>
  • Loading branch information
ozoromo and jans23 authored Aug 30, 2024
1 parent 36791b1 commit fec789a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion email_from/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Set Default Email From Address
==============================

* User have option to auto set "Email From" value for mail sending from Odoo for specific selected models.
* User have option to auto set "Email From" value for mail sending from Odoo for specific selected models. This also sets the "Reply To" field.
* Configuration need to do in Settings --> General Settings menu. Enter "Email From" and choose the "Models" for that Email From need to change.

Authors
Expand Down
1 change: 1 addition & 0 deletions email_from/models/mail_mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@ def create(self, vals_list):
rec = to_adjust.get(key, default)
if rec and key not in to_keep:
mail.write({"email_from": rec.email_from})
mail.write({"reply_to": rec.email_from})

return res

0 comments on commit fec789a

Please sign in to comment.