Hi,
Is there a way to configure ODOO so that when a user sends an email message, the followers of that subject receives the email with all the followers addresses in the cc field of the mail signature?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
Is there a way to configure ODOO so that when a user sends an email message, the followers of that subject receives the email with all the followers addresses in the cc field of the mail signature?
For adding followers in CC as recipient you need to inherit get_mail_values() method of mail.compose.message object and Update below values:
mail_values = {
'subject': self.subject,
'body': self.body or '',
'parent_id': self.parent_id and self.parent_id.id,
'partner_ids': [partner.id for partner in self.partner_ids],
'attachment_ids': [attach.id for attach in self.attachment_ids],
'author_id': self.author_id.id,
'email_from': self.email_from,
'record_name': self.record_name,
'no_auto_thread': self.no_auto_thread,
'mail_server_id': self.mail_server_id.id,
}
Thanks,
Bobby Joseph [iWesabe]
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
Apr 20
|
3663 | ||
|
0
Dec 24
|
2 | ||
|
2
Jul 24
|
605 | ||
|
1
May 24
|
1202 | ||
|
2
May 24
|
803 |