Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Food & Hospitality
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Guest House
    • Distributor nápojů
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Trades
    • Údržbář
    • IT hardware a podpora
    • Solar Energy Systems
    • Výrobce obuvi
    • Úklidové služby
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Access Denied on mail.mail create

Odebírat

Get notified when there's activity on this post

This question has been flagged
emailaccessdeniedgroups
1 Odpovědět
7788 Zobrazení
Avatar
Aaron Neo

Hi all,

Please see if you could help on my issue with creating mail.mail records for sending email to external email accounts. I am using mail.mail model to create email from Email Templates to send email externally.

Following is the code that does the sending:

def send_email(self, cr, uid, ids, email_content, context=None):
email_template_obj = self.pool.get('email.template')
template_ids = email_template_obj.search(cr, uid, [('model_id.model', '=',email_content["model"])], context=context) 
if template_ids:
    values = email_template_obj.generate_email(cr, uid, template_ids[0], ids, context=context)
    values['subject'] = email_content["subject"]
    values['email_to'] = email_content["to"]
    values['body_html'] = email_content["body"]
    values['body'] = email_content["body"]
    values['res_id'] = False
    mail_mail_obj = self.pool.get('mail.mail')
    msg_id = mail_mail_obj.create(cr, uid, values, context=context)
    if msg_id:
        mail_mail_obj.send(cr, uid, [msg_id], context=context) 
return True

The error occurred on the line "msg_id = mail_mail_obj.create(cr, uid, values, context=context)" I received error message in the web browser saying: Access Denied The requested operation cannot be completed due to security restrictions. Please contact your system administrator. (Document type: Message, Operation: create)

The user is already in the Human Resource / Employee group which allows create for mail.mail and mail.message, and I have tried explicitly added Access Rights to create mail.mail records in group but i am still being denied access.

Please help. I am at my wits end. Aaron

0
Avatar
Zrušit
Avatar
Aaron Neo
Autor Nejlepší odpověď

In case anyone also have this same problem, I have resolved this problem by using another method to send email to external email accounts.

Below is the new way of sending email using email.template

def send_email(self, cr, uid, model, res_id, context=None):
email_template_obj = self.pool.get('email.template')
template_ids = email_template_obj.search(cr, uid, [('model_id.model', '=',model)], context=context) 
if template_ids:
    email_template_obj.send_mail(cr, uid, template_ids[0], res_id, force_send=True, context=context)
return True

By not using mail.mail, I have avoided the problem. Tested with a user assigned to Human Resource / Employee group, the user is able to send out the email successfully.

Regards, Aaron

0
Avatar
Zrušit
Chintan Modi-BrowseInfo

Hello, Aaron. It is a way to do it that you mentioned. But i have done with the format given in Question and i am getting an error even though i have updated the record for object Document Followers. Do you have any idea how can i do it? Thanks in Advance.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Defining an ORM groups attribute on a field does NOT remove it from the View (as documented). Instead there is an ACL error. Why?
accessdenied groups
Avatar
0
pro 21
3188
access denied in creating new supplier Vyřešeno
accessdenied rules groups roles
Avatar
Avatar
Avatar
Avatar
7
pro 23
16876
erp7 Task -> Log a Note -> Access Denied
notes task accessdenied groups
Avatar
Avatar
Avatar
Avatar
Avatar
6
bře 15
8716
need more felixiblity and inovation on email marketing tools
email
Avatar
0
lis 25
86
After editing the Sales Order Confirmation email template, Odoo isn't using it.
email
Avatar
Avatar
1
čvc 25
1946
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now