跳至内容
菜单
此问题已终结
1 回复
6552 查看

Hello everybody, this is my problem, I'm using a plugin for thunderbird and You can insert the emails of thunderbird to Odoo. But when I create a new record in mail.message automatically send me the same email that I had inside thunderbird, I'm using this:

                    self.pool.get('mail.message').create(cr, uid, {

                        'subject': msg.get('subject'), 

                        'email_from': email_from, 

                        'record_name': msg.get('subject'), 

                        'message_type': 'email', 

                        'body': msg.get('body'), 

                        'author_id': author_id, 

                        'reply_to': email_from, 

                        'message_id': message_id,

                        'partner_ids': [(6, 0, destinatarios_ids)],

                    })

There is some way to keep the content of partner_ids but without sending the email again? Thanks!!

Another question, how can I change that users only can see their own messages in mail.message? Thanks!

形象
丢弃
最佳答案

Why are you using 'email' as message type if you don't wont to send an email? Did you try to use 'comment' instead?

形象
丢弃
相关帖文 回复 查看 活动
1
7月 24
1829
3
1月 20
5587
2
2月 18
7197
1
9月 16
3655
1
3月 15
9625