Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Sending emails automatically

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
emailautomatically
1 Odpowiedz
4091 Widoki
Awatar
Guilherme

Hi guys, hope you are doing well. So i have a custom model like this:


And what i want to do is, depending on the choice of the checkbox, sending the same email for that persons when you click in button "Avançar", for example, i select de "Seguradora 1" and "Seguradora 3" field, and, when i click in "Avançar", i want to send, automatically, an email with the text "testing sending an email with odoo" without the need to write that email, hope you guys can help me with some code or documentation, have a great day and appreciate your time! 

0
Awatar
Odrzuć
m-azzain

You can make your model inherit from 'mail.thread' and use its message_post method to send your emails to different partners. Those selectable names in your screen shot should be partners, so you can pass their ids to the message_post.

To call the message_post you need to have an action method in your model that connect to the form button by their names.

And make sure that your partners are receiving their notification by email.

I have been trying to understand odoo email workflow, and when encountered your question I use it as an exercise, you can check what I explained above here:

https://github.com/m-azzain/mz-addons/blob/master/practice/models/email_demo.py
https://github.com/m-azzain/mz-addons/blob/master/practice/views/email_demo_views.xml

m-azzain

I can't post an answer, do you have any idea why?

Guilherme
Autor

But I'm supposed to send an email outside of odoo, that is, odoo sends an email when I press the "Avançar" button, and that email it will be sent to the recipient's mail box as if it were a normal email, what you sent can do this?

Guilherme
Autor

I cant even convert your comment to answer, i don't know what i do wrong....

m-azzain

Yes It can do.
It will send an email to the email address of the partners; each partner in your odoo should have an email address. but you should have an outgoing email server that handle the process from odoo to the outside.

To configure an outgoing email server, there are a lot of ways. I've tried only one which I will show you below, but I think this isn't the perfect way to do it. when you figure better ways I hope you share it here.

First you need to have an outlook email, if you don't you can create one at outlook.com
Second change the setting in your aoutlook account to 'Let Devices and Apps Use POP'. You will find the option in Settings>Mail>Sync email
then update your account on odoo by setting this outlook email as your email; so that you will use it to send emails to the others

And Here is (on odoo) how I set the outgoing email server using outlook email
To configure an outgoing email server go to Settings>General Settings>Custom Email Servers>Outgoing Email Servers
create new and fill the form as:

Authenticate with: Username
Connection Encryption: TLS (STARTTLS)
SMTP Server: smtp.office365.com
SMTP Port: 587
Username: <Your outlook email>
Password: <Your outlook email password>

leave the rest as it's

Guilherme
Autor

Tried do to what you send me in github and keep giving me this error - > "TypeError: fields_get() takes 1 positional argument but 2 were give"

m-azzain

I think you missed the ** when you tried to call the super method
def fields_get(self, **kwargs):
result = super().fields_get(**kwargs)

m-azzain

by the way it allowed me to post an answer
It looks like, it prefer code more than text :)

m-azzain

If have find it convenient you can email me at m.alzain248@gmail.com

m-azzain

If you find it convenient you can email me at m.alzain248@gmail.com

m-azzain

hello, I am working into something and just stumbled on the same error as the one you mentioned, it is possible we are working into different versions of odoo. so I did minor change to the code, and also don't hesitate to post whatever error you may get, I already tested the code.

Awatar
m-azzain
Najlepsza odpowiedź

from odoo import api, fields, models


class EmailDemo(models.Model):
_name = 'practice.email.demo'
_inherit = ['mail.thread']
_description = "Email Demo"

res_partner_1 = fields.Boolean(string="Partner 1")
res_partner_2 = fields.Boolean(string="Partner 2")
res_partner_3 = fields.Boolean(string="Partner 3")
res_partner_4 = fields.Boolean(string="Partner 4")

@property
def receivers_selection_map(self):
# These partners are already in the system from demo data,
# You should check they exists in your system,
# Or you can replace them by others
return {'res_partner_1': self.env.ref('base.res_partner_1'),
'res_partner_2': self.env.ref('base.res_partner_2'),
'res_partner_3': self.env.ref('base.res_partner_3'),
'res_partner_4': self.env.ref('practice.practice_partner_1')}

def action_send_mail(self):
selected_partners = [p.id for k, p in self.receivers_selection_map.items() if self[k]]
self.message_post(body='Hello, From the email demo.
Email Demo body'
,
subject='email demo subject', partner_ids=selected_partners)

# To display the fields by partner names in the form
@api.model
def fields_get(self, allfields=None, attributes=None):
result = super().fields_get(allfields=allfields, attributes=attributes)
for k in self.receivers_selection_map:
result[k]['string'] = self.receivers_selection_map[k].display_name
return result

0
Awatar
Odrzuć
Guilherme
Autor

I do a copy and past so everything is equals but, i change the res_partners, i put only one to be more easier to me but give me that error, i don't understant the "res_partner" very well, and i don't know what to put in "base.res_partner_1", can you explain that two things to me pls?

m-azzain

You can consider partners as users; any user is a partner but not vice versa. Other things can be partners as addresses.
"base.res_partner_1" is an external id for a partner. It may not be in your system. You can check if it exists or not by going to Settings>Technical>Sequences & Identifiers>External Identifiers. There will be a lot of them you can filter by model name(res.partner).

About the fields_get method, it is actually from odoo.models.Model, you can go to the file odoo.models and find its exact signature and use it, mine is like this:
@api.model
def fields_get(self, allfields=None, attributes=None):

so the new demo method will be like:

@api.model
def fields_get(self, allfields=None, attributes=None):
result = super().fields_get(allfields, attributes)
for k in self.receivers_selection_map:
result[k]['string'] = self.receivers_selection_map[k].display_name
return result

m-azzain

this simple user-partner structure may be of some help:
https://github.com/m-azzain/mz-addons/blob/master/practice/data/res_user_data.xml
This is how most of the external identifiers come to exist

Guilherme
Autor

It works, thanks a lot!
Have a nice day!

m-azzain

It's my pleasure

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
need more felixiblity and inovation on email marketing tools
email
Awatar
0
lis 25
151
After editing the Sales Order Confirmation email template, Odoo isn't using it.
email
Awatar
Awatar
1
lip 25
1976
How to remove "Powered by Odoo" in email in the Enterprise version Rozwiązane
email
Awatar
Awatar
Awatar
Awatar
Awatar
5
maj 25
19923
Email Einstellung "Von" ist die Email vom Postausgansgserver
email
Awatar
0
kwi 25
1872
EMAIL marketing odoo 17.4+e
email
Awatar
Awatar
1
kwi 25
2202
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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