Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

[MAIL] Avoid sending emails in Development / staging environment to customers/suppliers

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
mailmailingmailserverodoo
1 Răspunde
7082 Vizualizări
Imagine profil
Othmane Ghandi

Hey Guys 

Is there a way to avoid sending emails in Development / staging environment to customers/suppliers (a parameter to add, a context ....etc)?

NB: There is the solution to disable the outgoing servers, but I would like to keep it to test it for testing notifications, emails for users ...etc

I hope I was clear :) & thanks a lot

0
Imagine profil
Abandonează
Imagine profil
Haresh Kansara
Cel mai bun răspuns

Hi Othmane,

For which model/module/form, you want to avoid?

You need to set context flag to that model's message_post() and this method create mail record so context pass to mail creation method and in that method you can check condition that context flag found than block email sending otherwise send email.

I am giving you hint.

1) Basically email send when you send message from chatter (bottom of any form), so in that model of that form, there is a method called message_post() thhis method send mail. So here you can add context flag.

2) So where to check context flag?:
There is a method in mail module (mail/models/res_partner(line no: 88-191)), the method _notify(), will prepare mail data and send mail.

So in that method go to line no: 149 (email = Mail.create(create_values))

and add condition here to block email sending.

You can add code like

if not self._context.get('CONTEXT_FLAG'):
# Line no: 149-164
email = Mail.create(create_values)

if email and recipient_ids:
    notifications = self.env['mail.notification'].sudo().search([
        ('mail_message_id', '=', email.mail_message_id.id),
        ('res_partner_id', 'in', list(recipient_ids))
    ])
    notifications.write({
        'is_email': True,
        'mail_id': email.id,
        'is_read': True,  # handle by email discards Inbox notification
        'email_status': 'ready',
    })

emails |= email
email_pids.update(recipient_ids)

I know it's innocent thing, but if you want to block for specific purpose then you need to custome code like this.

I hope it will helpful for you.

Thanks and regards
Haresh Kansara

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
what is by default limit of odoo 10.0 (Mass Mailing) for number of recipients and Number of messages per minute?
mail mass mailing mailserver
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
aug. 19
9954
odoo10 sending email to project task creator
mail mailing odoo odoo10
Imagine profil
0
apr. 18
3475
Hostinger Mail - Odoo
mail mailserver
Imagine profil
0
mai 24
3047
Huge mail.mail tables - why?
mail mailing
Imagine profil
0
feb. 24
2706
setup aws mail server Odoo 14
mailing mailserver
Imagine profil
Imagine profil
Imagine profil
2
mar. 23
4844
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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