Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
1 Svar
2272 Visninger

I am creating a user in the archived state using python code. But after creating the user, the system sends invitations and other emails to this user. How is it happening even if the user is disabled?

Avatar
Kassér
Bedste svar

Hi,

Archiving the user will not stop sending emails to the user. By default when we create a user the selection field notification_type in res.users will be set to emails. You can update this field value to inbox in order to handle the acknowledgments within odoo.

Try the below code, 

self.env['res.users'].create({
'name': 'test user',
'login'
: 'test',
'email'
: 'p.p@example.com',
'notification_type'
: 'inbox',})

Thanks

Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
2
dec. 24
4240
1
nov. 24
2966
2
apr. 23
17885
4
aug. 24
23964
0
dec. 21
2416