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

remove email footer "sent by XXX Using OpenERP"

Abonare

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

Această întrebare a fost marcată
emailfooter
13 Răspunsuri
44919 Vizualizări
Imagine profil
Gillesd

Hello,

I have started using openERP and whenever I send an email through Openerp, the recipient receive the email with the footer "Sent by XXX using OpenERP."

I don't know where I can remove this footer.

Can anyone help me ?

Thanks.

5
Imagine profil
Abandonează
Stan

Hi I have been searching for this answer all over the internet and i found nothing. So i sat hours wondering where it could be to be changed. Here is the solution: You go to the file /opt/odoo/addons/mail/mail_followers.py and search for 'Odoo'. Delete this: "using %(odoo)s" from line " sent_by = _('Sent by %(company)s using %(odoo)s') " Then under that - > Delete this whole line: 'odoo': "Odoo" Dont forget to remove the comma before this line next to 'company': company, So it should read: else: company = user.company_id.name sent_by = _('Sent by %(company)s') signature_company = '
%s' % (sent_by % { 'company': company }) Now restart Odoo server and then email invoice / quote to yourself to see its not there anymore

Imagine profil
Viindoo Technology Joint Stock Company
Cel mai bun răspuns

I think the best way is to revise translation string Sent by %(company)s using %(odoo)s to something else that you preferred. With this way, you get more benefits:

  1. No additional module required

  2. No core hack, hence no future source code update difficulty.

How to do it?

Navigate to Settings > Application Terms > Translated Terms and search old source for: Sent by %(company)s using %(odoo)s

Now, you can apply translation term with any that you want

0
Imagine profil
Abandonează
Josef Schmid

Im using odoo 15, there is no such translation string, they broke it up into two separate terms: "Sent by" and "using" so we have no control anymore over what is in between

Are there any other workarounds in odoo15?

Imagine profil
Emipro Technologies Pvt. Ltd.
Cel mai bun răspuns

Hello, 

There are 2 options :

1. Override and hide the parent "get_signature_footer" method in class of mail.notification ( in mail module ). By doing so when Odoo update anything in that method later, you will not able to get that latest code. Remove odoo content in following block.

        sent_by = _('Sent by %(company)s using %(odoo)s')

        signature_company = '<br /><small>%s</small>' % (sent_by % {

            'company': company,

            'odoo': "<a style='color:inherit' href='https://www.odoo.com/'>Odoo</a>"
        })

2. I know following way is not good but I choose this way to keep active Odoo standard method too. I have inherited and just remove the odoo content by standard string function of python ( find and replace ). 

def get_signature_footer(self, cr, uid, user_id, res_model=None, res_id=None, context=None, user_signature=True):
        footer=super(mail_notification,self).get_signature_footer(cr, uid, user_id, res_model=res_model, res_id=res_id, context=context, user_signature=user_signature)
        str=footer.replace("""using <a style='color:inherit' href='https://www.odoo.com/'>Odoo</a>""",' ') 
        return str

By going with 2nd way, I am still able to keep active Odoo main method. 

You can implement any of above 2 ways ! 

I am sure this will help you !

7
Imagine profil
Abandonează
Imagine profil
Ivan Elizaryev
Cel mai bun răspuns

You can try my modules, if you use odoo 8:

  • mail_delete_access_link -- deletes "About ..." or "Access ..." part of footer https://github.com/yelizariev/addons-yelizariev/blob/8.0/mail_delete_access_link/mail_delete_access_link.py 

  • mail_delete_sent_by_footer -- deletes "Sent by ..." part of footer https://github.com/yelizariev/addons-yelizariev/blob/8.0/mail_delete_sent_by_footer/mail_delete_sent_by_footer.py

  • mail_delete_odoo_footer -- wrapper for two modules above https://apps.odoo.com/apps/modules/8.0/mail_delete_odoo_footer

For odoo 9+  footer can be customized via Template

  • Activate developer mode (Top right-hand corner -> About) 

  • Navigate to Settings\Technical\Email\Templates

  • Select (set checkbox)  "Notification Email" record

  • click Action ->Export

  • add field "Body" to export fields

  • click "Export to Field"

  • open csv via your editor

  • Change footer as you need

  • Navigate to Settings\Technical\Email\Templates

  • click "Import"

  • Validate and Import your file

3
Imagine profil
Abandonează
Ivan Elizaryev

I suddenly clicked "Convert as comment" and votes for my answer disappeared :-(

Mario Gielissen

Changing the Body field from Odoo 9 affectes all the outgoing mail?

Imagine profil
Gaëtan Frenoy
Cel mai bun răspuns

As far as I can read the code (see line 133), nothing has been foreseen to remove this sentence in the footer.

0
Imagine profil
Abandonează
Gaëtan Frenoy

Maybe a module can override this function? Not sure.

Luke Branch

@frenoy.net I would prefer to use a module to override these default Odoo email templates. Do you know where I can find the default email template XML files for Odoo modules? I've been trying to search through github.com/odoo/odoo without much luck so far.

Imagine profil
Surendar
Cel mai bun răspuns

Thank you  Ivan Yelizariev.. your module helped me

0
Imagine profil
Abandonează
Imagine profil
Simplify-ERP® - Wapsol GmbH
Cel mai bun răspuns

Would have been nice if Settings > Application Terms > Translated Terms worked, but it unfortunately didn't for me. Haven't restarted the ERP though (since we try not to "disturb" it in production usage).

Would be glad to hear from anyone who successfully trimmed the footnote by editing Translated Terms.

Thanks

Ashant Chalasani / euroblaze

0
Imagine profil
Abandonează
Imagine profil
Denis Baranov
Cel mai bun răspuns

Have also look at this module: https://www.odoo.com/fr_FR/forum/aide-1/question/how-to-change-favicon-38363. Beside the mentioned feature, it also allows customizaing by each user individually

0
Imagine profil
Abandonează
Imagine profil
Fouric
Cel mai bun răspuns

 

 

Have you tried this ?

https://www.odoo.com/apps/modules/8.0/disable_openerp_online/

 

 

0
Imagine profil
Abandonează
grayson

This module is useful, but has no effect on email templates.

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
Delete "powered by Odoo Footer" on emails
email footer
Imagine profil
0
aug. 17
7352
Remove "Sent by ... using Odoo about Lead/Opportunity ..." text from email footer Rezolvat
email footer
Imagine profil
Imagine profil
1
mar. 15
8649
Remove Access this document directly in OpenERP
email footer
Imagine profil
0
mar. 15
4513
to add signature in the footer email
email signature footer
Imagine profil
Imagine profil
1
dec. 23
4926
how can I configure the header and footer of my emails? V16 Rezolvat
email header footer
Imagine profil
Imagine profil
1
dec. 23
3097
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