As ODOO sends an email to the partner and all followers of the sales order, it confusion the customers as the followers are not listed, every one recieves and email and thinks it is only sent to them.
I want to make it clear that the email is sent to
- Partner name and email (as set on the sales order header)
- All followers (listed by name and email address)
I was able to get the following in the email template but it is not giving me the result i'm looking for;
<p><strong>Followers:</strong>
<t t-foreach="object.message_follower_ids" t-as="follower">
<t t-esc="follower.partner_id.name"/> <<t t-esc="follower.partner_id.email"/>>;
</t>
</p>
I see a lot of post about the same but did not find the solution.
Hope someone can help!