Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

remove email footer "sent by XXX Using OpenERP"

Subscribe

Get notified when there's activity on this post

This question has been flagged
emailfooter
13 Replies
44905 Views
Avatar
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
Avatar
Discard
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

Avatar
Viindoo Technology Joint Stock Company
Best Answer

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
Avatar
Discard
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?

Avatar
Emipro Technologies Pvt. Ltd.
Best Answer

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
Avatar
Discard
Avatar
Ivan Elizaryev
Best Answer

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
Avatar
Discard
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?

Avatar
Gaëtan Frenoy
Best Answer

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

0
Avatar
Discard
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.

Avatar
Surendar
Best Answer

Thank you  Ivan Yelizariev.. your module helped me

0
Avatar
Discard
Avatar
Simplify-ERP® - Wapsol GmbH
Best Answer

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
Avatar
Discard
Avatar
Denis Baranov
Best Answer

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
Avatar
Discard
Avatar
Fouric
Best Answer

 

 

Have you tried this ?

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

 

 

0
Avatar
Discard
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!

Sign up
Related Posts Replies Views Activity
Delete "powered by Odoo Footer" on emails
email footer
Avatar
0
Aug 17
7340
Remove "Sent by ... using Odoo about Lead/Opportunity ..." text from email footer Solved
email footer
Avatar
Avatar
1
Mar 15
8641
Remove Access this document directly in OpenERP
email footer
Avatar
0
Mar 15
4505
to add signature in the footer email
email signature footer
Avatar
Avatar
1
Dec 23
4893
how can I configure the header and footer of my emails? V16 Solved
email header footer
Avatar
Avatar
1
Dec 23
3072
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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