İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

Unable to send emails

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
emailmailtemplatev18CommunityEdition
2 Cevaplar
1387 Görünümler
Avatar
Shreya Doodipala

I'm using the following code to send an email notification whenever a new record is created.

@api.model
    def create(self,vals):
        record = super().create(vals)
        def send_email_after_commit():
            new_record = self.browse(record.id)
            new_record.send_custom_email()

        self.env.cr.postcommit.add(send_email_after_commit)
        return record
   
    def send_custom_email(self):
        template = self.env.ref('crm.email_template_added_to_opp')

        # Only send to head if not the same as creator
        if self.write_uid.id != self.head_id.id and self.head_id.partner_id:
            recipient_ids = [self.head_id.partner_id.id]
            email_values = {'recipient_ids': [(6, 0, recipient_ids)], }
            template.send_mail(self.id, email_values=email_values)

If I use force_send=True, the email is sent. However, if I don't set it, the email is never sent.

My email cron job is working properly as I have other emails that are sent without a problem.

Email Template

<record id="email_template_added_to_opp" model="mail.template">
            <field name="name">Added to Opportunity Notification</field>
            <field name="model_id" ref="crm.model_name"/>
            <field name="email_from">testam1sales@gmail.com</field>
            <field name="subject">Added to New Opportunity: {{object.lead_id.name}}</field>
            <field name="body_html" type="html"> <div>
                <p>Hello <t t-out='object.bu_head_id.name' />,</p>
                <p>You have been added to a new opportunity <strong> <t t-out="object.lead_id.name" /> </strong>. <br/>
                <a t-attf-href="#{object.lead_id.get_base_url()}/web#id=#{object.lead_id.id}&amp;model=crm.lead&amp;view_type=form"><span style="background-color:green; color:white; padding:4px 10px;">Open <t t-out="object.lead_id.name" /></span></a></p>
                <p><strong>Customer:</strong> <t t-out="object.lead_id.partner_id.name" /> <br/>
                <strong>Salesperson:</strong> <t t-out="object.lead_id.user_id.name" /> <br/>

                <p>Thanks,<br/>
                CRM System</p>
            </div> </field>
        </record>

Odoo v18 Community Edition

0
Avatar
Vazgeç
Avatar
John
En İyi Yanıt

send_mail(..., force_send=False) creates a mail.mail record, but Odoo’s mail queue will only send it correctly if it’s fully committed and not in a broken state. Using post-commit + force_send=True is the most reliable for real-time delivery


@api.model

def create(self, vals):

    record = super().create(vals)


    def send_email_after_commit():

        template = self.env.ref('crm.email_template_added_to_opp')

        if self.env.cr.postcommit.add(send_email_after_commit)

    return record


0
Avatar
Vazgeç
Avatar
D Enterprise
En İyi Yanıt

Hii,
Update your Python method:

def send_custom_email(self):

    template = self.env.ref('crm.email_template_added_to_opp', raise_if_not_found=False)

    if not template:

        return


    if self.id, email_values=email_values, force_send=False)


Fix your Email Template XML:
<record id="email_template_added_to_opp" model="mail.template">

    <field name="name">Added to Opportunity Notification</field>

    <field name="model_id" ref="your_module.model_your_model"/>  

    <field name="email_from">testam1sales@gmail.com</field>

    <field name="subject">New Opportunity: ${object.lead_id.name}</field>

    <field name="body_html" type="html">

        <div>Hello ${object.bu_head_id.name}, you've been added to ${object.lead_id.name}.</div>

    </field>

    <field name="auto_delete" eval="False"/>  

</record>

To find correct model ID:

  • Go to Settings > Technical > Models
  • Copy the XML ID for your model, like: your_module.model_your_model
Ensure Email Cron is Active:
  • Settings > Technical > Scheduled Actions
  • Find "Mail: Email Queue Manager"
  • Make sure it is enabled and runs every 1–5 minutes.

i hope it is usefull

0
Avatar
Vazgeç
Enjoying the discussion? Don't just read, join in!

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

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
Modify Email Notifications
email notifications v18 CommunityEdition EmailNotification
Avatar
Avatar
1
Haz 25
2569
Is it possible to receive an email and log it to the chatter in contacts? Çözüldü
email chatter v18
Avatar
Avatar
1
Eyl 25
1705
Modify Pivot View
Pivot v18 CommunityEdition
Avatar
Avatar
1
Haz 25
1818
Unable to send email notifications through write
notifications v18 CommunityEdition
Avatar
Avatar
1
Haz 25
1874
How do i attach images from my custom email template?
email sale.order mailtemplate
Avatar
Avatar
1
Eyl 23
4101
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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