[16.0][ADD] repair_custom_sender: Allows configuring a custom sender email for repair orders#157
Closed
nicolas-delbovier-acsone wants to merge 1 commit into
Closed
Conversation
lmignon
approved these changes
Apr 10, 2026
…for repair orders
45f4667 to
cc4221d
Compare
Author
Closing RationaleClosing this PR to rework the implementation. Key findings:
The objective is to ensure Reply-To remains synced with the custom From address. I will submit a new PR that specifically targets this. |
Author
|
See #162 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Use case
By default, Odoo sets the sender as the user who clicks "Send" on the wizard. This module allows setting a centralized generic email (e.g., repairs@company.com) for all repair communications.
Configuration
Technical note
I first tried to implement this by passing "default_email_from" in context but it seems this approach does not work as the
email_fromfield gets overwritten later down the line. If you have an idea of how to make this work / why this does not work, I'd be happy ton hear it (I believe this would be a more elegant solution to ensure the wizard gets created with the good values at creation instead of having to overwrite)