コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
4131 ビュー

I have a piece of codes to send an email to a user when he did made some choice on the website. The code use the following function to create the email

 http.request.env['mail.mail'].create(mail_values).send()

But it only works when I used admin to login, otherwise, I was given the error:

odoo.exceptions.AccessError: You are not allowed to create 'Outgoing Mails' (mail.mail) records.

This operation is allowed for the following groups:

        - Administration/Settings

I try to find option in settings to grant the permission of sending email to all user. But I cannot find such option. Please help me solve this issue. Thank you very much in advance.

アバター
破棄
著作者 最善の回答

I find the answer now. I must use sudo to create, i.e. http.request.env['mail.mail'].sudo().create(mail_values).send(), then I can send mails in the method of handling the session of any user.

アバター
破棄

this works, thanks

関連投稿 返信 ビュー 活動
0
12月 24
1523
3
5月 24
2102
1
12月 23
2434
2
4月 23
2168
2
12月 22
8982