Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Can I adjust the format of the Emails sent when Helpdesk Tickets are created?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
emailHelpdeskEmail18.0TicketPowered By
1 Beantwoorden
1157 Weergaven
Avatar
Community Question

Odoo is sending emails to Customers who create helpdesk tickets and I wanted to make the following changes to the emails:

  1. The wording
  2. White background
  3. Align them to the left instead of the center
  4. Remove "Powered by Odoo"

Is there a way to edit these?

0
Avatar
Annuleer
Avatar
Ray Carnes (ray)
Beste antwoord

Yes, these emails are tied to the Stage of the Ticket.

From Helpdesk --> Configuration --> Stages, open the NEW stage and you can access the default Helpdesk: Ticket Received email template. This is where you can edit the wording.

You can also edit the global QWeb View that defines the design of all outgoing emails from Odoo. This is where you can make the style changes.

For example, in Developer Mode, you can access Settings --> Technical --> User Interface --> Views and locate the mail_notification_light View.


Create your own View that inherts this one and make the next step of changes there.  

Example:


Code:

<data>
   
<xpath expr="//table[@role='presentation']" position="attributes">
    <attribute name="style">padding-top: 16px; background-color: #ffffff; font-family:Verdana, Arial,
    sans-serif; color: #454748; width: 100%; border-collapse:separate;</attribute>
</xpath>

<td position="attributes">
    <attribute name="align">left</attribute>
</td>

<xpath expr="//t/html/body/table/tr[2]" position="replace">
<!-- POWERED BY -->
<tr><td align="center" style="min-width: 590px;">
    <!--
        Powered by <a target="_blank" href="https://www.odoo.com?utm_source=db&amp;utm_medium=email"
               t-att-style="'color: ' + (company.email_secondary_color or '#875A7B') + ';'">Odoo</a>
    -->
    <span t-if="show_unfollow" id="mail_unfollow">
        | <a href="/mail/unfollow" style="text-decoration:none; color:#555555;">Unfollow</a>
    </span>
</td></tr>
</xpath>

</data>


Result:


See our documentation at:

https://www.odoo.com/documentation/18.0/applications/services/helpdesk/overview/stages.html

https://www.odoo.com/documentation/18.0/applications/general/companies/email_template.html

https://www.odoo.com/documentation/18.0/developer/reference/frontend/qweb.html


Your Odoo Digital Advisor or Odoo Partner can help if you don't have the technical skills to do this.

1
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
How to indicate the email "to" is my custom model field?
email email_template Email
Avatar
0
jul. 24
2019
Retaining record mapping while sending emails with external servers
email emails emailing Email
Avatar
0
okt. 23
2414
How to Edit the Template for the Helpdesk Assigned Message
email email_template Ticketing Helpdesk
Avatar
0
okt. 19
6167
Helpdesk : Incoming Mail Server, collect "Read" emails
email helpdesk Helpdesk IMAP Helpdesk ticket
Avatar
Avatar
1
nov. 25
303
How to trigger automatic email notification when creating a Helpdesk ticket via API in Odoo 13?
email API v13 Helpdesk on-premise
Avatar
0
jul. 24
2583
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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