Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
1202 Visualizzazioni

Hello,

Any idea how to make the followers of a sales order or invoice visible to all the recipients. 

It´s happening that a follower is forwarding the email to another follower, since they don´t see all the recipients included in the loop.

Thanks,

Mireia

Avatar
Abbandona
Autore Risposta migliore

Hello,

I don´t use codes... can this be done with Studio?

Best,

Avatar
Abbandona
Risposta migliore

code to get all followers' emails
---------------------------------

followers = self.env['mail.followers'].search([('res_model', '=', 'sale.order'), ('res_id', '=', sale_order_id)])

emails = [follower.partner_id.email for follower in followers]


Add these emails to the Cc field
----------------------------------

email_values = {

    'subject': 'Sales Order Notification',

    'email_to': main_recipient_email,

    'email_cc': ','.join(emails),

    # other email parameters

}


mail = self.env['mail.mail'].create(email_values)

mail.send()

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
1
mag 19
4509
0
apr 21
2374
2
ott 23
8682
1
mag 19
5231
1
mar 19
5466