Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

E-mail sending

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
mailemailsmtpmailing
2 Replies
6545 Tampilan
Avatar
Ivan Yakushchenko

Dear community!

I've configured in OpenERP Outgoing e-mail server with our company's e-mail. But the problem is, that it doesn't work properly. When I try to send quotation, for example, on some e-mail, I can't do it - I don't receive any error; system simply doesn't send message. But when I've setup system to send messages on user's e-mails when some action is made with task (created, edited, and so on), user receive e-mail, which is sent from our company's mailbox. And that means, that SMTP server for outgoing e-mails works properly, as I understand. 

But in this case, why I can't send quotations, purchase orders and other stuff via our company's mailbox via OpenERP? Can anyone help me with it? And, by the way, when I setup Outgoing e-mail server with my gmail mailbox, everything works fine.

Help me, please, with this problem!

Thank you very much in advance!

0
Avatar
Buang
Eric

Im having the same problem. I think I tracked the problem down in line 261 of the mail_compose_message.py file. There is an if statement which checks if the mass_mail_mode and post_values['partner_ids'] variables are true. if they are then it will run the line that sends the mail. Otherwise it wont. My issue is with the mass_mail_mode variable not being true, so I have to figure out why. Hope this helps

Eric

mass_mail_mode is False because the wizard.composition_mode = 'comment' and not 'mass_mail'

Eric

The composition_mode is being set to 'comment' in the sale.py file, in the action_quotation_send() method

Ivan Yakushchenko
Penulis

Thank you very much! But is it possible to reach python file of code through the OpenERP system, without direct access on installation folder?

Eric

No this is something that may need to be changed in the python file. However, I was able to send an email out because I bypasses a part that checks the user preferences. I would check your partners/customers and make sure that they havent opted out of any emails. This maybe a simple fix this way

Eric

Here is a list of things to check for your partners/customers: # Do not send to partners without email address defined # Do not send to partners having same email address than the author (can cause loops or bounce effect due to messy database) # Partner does not want to receive any emails or is opt-out # Partner wants to receive only emails and comments # Partner wants to receive only emails

Ivan Yakushchenko
Penulis

Thank you very much, Eric! But I'm not sure, that problem is in settings - I've checked, everything seems to be OK. I can even share via our company's e-mail links to purchase orders, and so on (when I select in the upper menu More - > Share. For all email templates I've selected configured outgoing e-mail server... Everything seems to be OK, but it doesn't work... Can I kindly ask you to tell some more ideas?

Eric

Did you check if your customer has the opt-out check box selected? I know some other emails might be sent, but I think that's because it uses a different process than this one. let me know if your customers settings are and I'll see if I can help some more

Ivan Yakushchenko
Penulis

Thank you, Eric! But opt-out check box is not selected for the customers. You can check it, please, here - http://hostingkartinok.com/show-image.php?id=d28d8efa0c6f8cde2de205564e2873f5 .

Avatar
Ivan Yakushchenko
Penulis Jawaban Terbai
0
Avatar
Buang
Avatar
Eric
Jawaban Terbai

I think the real issue lies with a customer's preference setting being set to a value that prevents sending the message. So I would check there for you. Otherwise I was able to get mine working again. Hope this helps

 

You can check the preferences by clicking on Sales->Customers->Sales & Purchases 

 

Then you can check the settings for the customer/partner there

 

0
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Assistance with Setting Up Multiple Outgoing Mail Servers for Different Teams (Recruitment & eLearning)
mail email
Avatar
0
Nov 25
2280
How do notes and messages work on sales orders?
mail email log mailing mail.thread
Avatar
Avatar
1
Feb 25
7313
Hostinger email
mail email
Avatar
Avatar
1
Nov 24
3192
outgoing mail server not working with smtp.office365.com Diselesaikan
email smtp
Avatar
Avatar
Avatar
Avatar
Avatar
14
Mei 24
237184
Huge mail.mail tables - why?
mail mailing
Avatar
0
Feb 24
2666
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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