Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

email_from now also sets the reply_to field of the email #170

Merged
merged 2 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading