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í
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • 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
    • Služby pro partnery
    • 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

Odoo 13 Attach a file in email template

Odebírat

Get notified when there's activity on this post

This question has been flagged
attachmentsending mail with attachmentOdoo13.0
1 Odpovědět
13243 Zobrazení
Avatar
Kev

Hello, Please help.My objective is to send an email with attachment by clicking a button. First, I generate a text file, save it in the directory that I have defined(For test only, not advisable but i'll change it later) then open and read it as binary and convert it to base64, here is the code. Please correct me if I did something wrong:

def send_email_sample(self):
"""

:return: test function
"""
self.ensure_one()
# path = '/opt/odoo/odoo/doc/'
path = "C:\\Users\myuser\\Desktop\\Odoo projects\\Odoo13-CE\\test_folder\\"
order_line_data = []
for num, rec in enumerate(self.order_line):
order_line_data.append({
'default_code': rec.product_id.default_code if rec.product_id.default_code else "None",
'price_unit': rec.price_unit,
'product_uom_qty': int(rec.product_uom_qty),
'product_uom': rec.product_uom.name,
'sequence_number': num + 1
})
json_record = {
'so_number': self.name,
'partner_id': self.partner_id.name,
'date_oder': self.date_order.strftime("%m/%d/%Y"),
'payment_term': self.payment_term_id.name if self.payment_term_id else "None",
'partner_add': "%s %s City %s" % (
self.partner_id.street, self.partner_id.city, self.partner_id.state_id.name),
'order_line': order_line_data,
}
with open(path + "SALESORDER_%s.txt" % self.name, "w") as file:
file.write("%s" % json_record)
data_value = open(path + "SALESORDER_%s.txt" % self.name, 'rb').read()
data_record = base64.encodebytes(data_value)
ir_values = {
'name': "SALESORDER_%s.txt" % self.name,
'type': 'binary',
'datas': data_record,
'store_fname': data_record,
'create_uid': self.env.uid,
'res_model':
self._name,
'res_id': self.id,
'mimetype': 'text/csv',
}
data_id = self.env['ir.attachment'].create(ir_values)

Now my problem is, how to get that attachment in ir.attachment and link it to my template. Here is my template code:

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<data noupdate="1">
<record id="email_template_test_send" model="mail.template">
<field name="name">Test email with attachment</field>
<field name="model_id" ref="sale.model_sale_order"/>
<field name="subject">TEST SEND EMAIL ATTACHMENT (${object.name})</field>
<field name="email_from">${user.email_formatted | safe}</field>
<field name="email_to">${user.email_formatted | safe}</field>
<field name="body_html" type="html">
<div style="margin: 0px; padding: 0px;"><![CDATA[ -----Content---]]>
<p style="margin: 0px; padding: 0px; font-size: 13px;">
Testing send email file with attachment
</p>
</div>
</field>
</record>
</data>
</odoo>

I tried this code:

email_template = self.env.ref('custom_module.email_template_test_send')
email_template.attachment_ids = [(4, data_id.id)]
email_template.send_mail(data_id.id, raise_exception=False, force_send=True)
email_template.attachment_ids = [(3, data_id.id)]

but It gave me an error: odoo.exceptions.MissingError: ('Record does not exist or has been deleted.\n(Record: sale.order(705,), User: 2)', None)

The attachment is successfully registered in Technical>Database structure>attachments but I'm having a problem linking it to my template. Any help will be highly appreciated. Thank you very much.




0
Avatar
Zrušit
Avatar
Kev
Autor Nejlepší odpověď

Hello, I was able to find the solution. Anyways, for future reference, here is the code:

def send_email_sample(self):
"""

:return: test function
"""
self.ensure_one()
order_line_data = []
for num, rec in enumerate(self.order_line):
order_line_data.append
({
'default_code': rec.product_id.default_code if rec.product_id.default_code else "None",
'price_unit': rec.price_unit,
'product_uom_qty': int(rec.product_uom_qty),
'product_uom': rec.product_uom.name,
'sequence_number': num + 1
})
json_record = {
'so_number': self.name,
'partner_id': self.partner_id.name,
'date_oder': self.date_order.strftime("%m/%d/%Y"),
'payment_term': self.payment_term_id.name if self.payment_term_id else "None",
'partner_add': "%s %s City %s" % (
self.partner_id.street, self.partner_id.city, self.partner_id.state_id.name),
'order_line': order_line_data,
}
data_record = base64.encodebytes(("%s" % json_record).encode())
ir_values = {
'name': "SALESORDER_%s.txt" % self.name,
'type': 'binary',
'datas': data_record,
'store_fname': data_record,
'mimetype': 'text/csv',
}
data_id = self.env['ir.attachment'].create(ir_values)
template_id = self.env.ref('custom_module.email_template_test_send').id
template =
self.env['mail.template'].browse(template_id)
template.attachment_ids = [(6,0, [data_id.id])]
template.send_mail(self.id, force_send=True)
template.attachment_ids = [(3, data_id.id)]

This code is the important one for attachment, and also make sure to import base64 library:

data_record = base64.encodebytes(("%s" % json_record).encode())
ir_values = {
'name': "SALESORDER_%s.txt" % self.name,
'type': 'binary',
'datas': data_record,
'store_fname': data_record,
'mimetype': 'text/csv',
}
data_id = self.env['ir.attachment'].create(ir_values)
template_id = self.env.ref('custom_module.email_template_test_send').id
template = self.env['mail.template'].browse(template_id)
template.attachment_ids = [(6,0, [data_id.id])]
template.send_mail(self.id, force_send=True)
template.attachment_ids = [(3, data_id.id)]

First, I encode the string into bytes then pass it to a variable name data_record:

data_record = base64.encodebytes(("%s" % json_record).encode())

Then create a context for my file attachment and create it in ir.attachment table:

ir_values = {
'name': "SALESORDER_%s.txt" % self.name,
'type': 'binary',
'datas': data_record,
'store_fname': data_record,
'mimetype': 'text/csv',
}
data_id = self.env['ir.attachment'].create(ir_values)

the rest are just to query the id of the template in mail.template, add the attachment id to attachmet_ids:

template_id = self.env.ref('custom_module.email_template_test_send').id
template = self.env['mail.template'].browse(template_id)
template.attachment_ids = [(6,0, [data_id.id])]
template.send_mail(self.id, force_send=True)
template.attachment_ids = [(3, data_id.id)]

I use the [(3, data_id.id)] to unlink the attachment. You can also choose not to include it in your code.

2
Avatar
Zrušit
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
Preview on Attachement field (ir.attachment)
attachment Odoo13.0 v13
Avatar
0
lis 20
3579
How We Can add Attachment field in exiting view in odoo
attachment file odoo Odoo13.0
Avatar
Avatar
Avatar
2
úno 20
15647
Odoo 13. Don't close a wizard when Click a button Vyřešeno
Odoo13.0
Avatar
Avatar
Avatar
Avatar
4
kvě 24
14040
Permission error while user printing excel sheet report in odoo 13 Vyřešeno
Odoo13.0
Avatar
Avatar
1
dub 24
4295
One2many field edited from Transient Model cannot be made empty.
Odoo13.0
Avatar
0
lis 23
2970
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